> ## Documentation Index
> Fetch the complete documentation index at: https://docs.lxdao.io/llms.txt
> Use this file to discover all available pages before exploring further.

# 📅 公共日历

> 你可以点击以下链接，参加 LXDAO 日常会议

<table style={{ width: '100%',textAlign:'left',tableLayout:'fixed' }}>
  <thead style={{ backgroundColor: '#c4c4c42e',width:'100%' }}>
    <tr>
      <th style={{padding:'10px',width:'20%'}}>名称</th>
      <th style={{padding:'10px',width:'20%'}}>时间</th>
      <th style={{padding:'10px',width:'10%'}}>链接</th>
    </tr>
  </thead>

  <tbody>
    {
          [
          {
              name: 'LXDAO Community Call',
              time: '每周六 11:00 (UTC+8)',
              link: {
                  text: 'Teams',
                  url: 'https://teams.microsoft.com/dl/launcher/launcher.html?url=%2F_%23%2Fl%2Fmeetup-join%2F19%3Ameeting_MGI4YTM4MTUtMTcyZC00MzQ3LTk4MzItZWRmMzBlNTRlZTUx%40thread.v2%2F0%3Fcontext%3D%257b%2522Tid%2522%253a%252233c37896-a852-458d-a347-2490bf4e6a9c%2522%252c%2522Oid%2522%253a%2522f3a85524-298d-4a59-8c92-4e83f89f84a0%2522%257d%26anon%3Dtrue&type=meetup-join&deeplinkId=39283804-ceae-4b9f-b11c-a51a44504fef&directDl=true&msLaunch=true&enableMobilePage=true&suppressPrompt=true'
              }
          },
          {
              name: '研究小组日常例会',
              time: '每周六 9:00 (UTC+8)',
              link: {
                  text: 'Tencent meeting',
                  url: 'https://s.lxdao.io/rw'
              }
          }
        ].map((meeting, index) => (
                          <tr key={index}>
                              <td style={{padding:'10px'}}>{meeting.name}</td>
                              <td style={{padding:'10px'}}>{meeting.time}</td>
                              <td style={{padding:'10px'}}>
                                  {meeting.link.url? (
                                      <a target="_blank" href={meeting.link.url} rel="noopener noreferrer">
                                          {meeting.link.text}
                                      </a>
                                  ) : (
                                      meeting.link.text
                                  )}
                              </td>
                          </tr>
                      ))
      }
  </tbody>
</table>
