Skip to content

Commit 82b52e7

Browse files
committed
Add community sync page for XTable
1 parent 4db9bb8 commit 82b52e7

File tree

4 files changed

+49
-0
lines changed

4 files changed

+49
-0
lines changed

website/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,5 +109,9 @@ npm run serve
109109
1. The homepage is a `.html` file located at `website/static/index.html`
110110
2. If you're making changes to the page, test it locally using `python 3 -m http.server` and visiting http://localhost:8000/ before pushing the changes.
111111

112+
## Add community sync page
113+
1. Create a `.md` file with all the content for Community page.
114+
2. Add community page to website homepage.
115+
112116
## Maintainers
113117
[Apache XTable™ (Incubating) Community](https://incubator.apache.org/projects/xtable.html)

website/community/sync.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Community
2+
3+
We have set up the following regular syncs for community users and developers to meet, interact and exchange ideas. Meetings will be recorded and made available after every sync.
4+
5+
6+
## Bi-weekly Community Call
7+
Participate in our Community Calls by joining us on [Google Meet](https://calendar.google.com/calendar/event?action=TEMPLATE&tmeid=NXE5MGxnaGszOTgxN3FwMnRuZzRibzB2aW1fMjAyNTAxMjdUMTYwMDAwWiA2MWYzYmJjYzMwMzQzODhlNmZkMTlmNzEyNDU0NmEzMjQ5ZmMwYTFiZWMwZmVhYTNiNjNkZGQ1NTM2MzI2NTIwQGc&tmsrc=61f3bbcc3034388e6fd19f7124546a3249fc0a1bec0feaa3b63ddd5536326520%40group.calendar.google.com&scp=ALL) by adding the invite to your calendar.
8+
9+
Here's a quick view of the upcoming community syncs:
10+
11+
- 27th Jan 2025, 8:00 - 8:45AM PST
12+
- 10th Feb 2025, 8:00 - 8:45AM PST
13+
- 24th Feb 2025, 8:00 - 8:45AM PST
14+
15+
## Join the Community on Slack
16+
We have a [Slack channel](https://join.slack.com/t/apachextablei-yoi8504/shared_invite/zt-2y9hqskhv-ZfSwoxzq~PTJlWGj0V1sQw) that you can join for help with any questions, issues, design choices, announcements, etc.
17+
18+
19+
## Recordings of the Community Calls
20+
Find date-wise recordings here.
21+
- [14th Jan 2025](https://drive.google.com/file/d/1eVRIWvf-Kn2UoYYctIyO-Iaetha8U_nH/view?usp=sharing)
22+
23+
24+
## Typical agenda
25+
Agenda Doc: https://docs.google.com/document/d/1mSthtQBVDDzi9bLn9sWDsPaJLJHCDoK_MxDsSphhlos/edit?usp=sharing
26+
27+
28+
## YouTube Channel
29+
https://www.youtube.com/@ApacheXTable/videos
30+
31+
32+
## Socials
33+
- [Linkedin](https://www.linkedin.com/company/apache-xtable/)
34+
- [X](https://twitter.com/apachextable)

website/docusaurus.config.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,14 @@ const config = {
3333
routeBasePath: 'releases',
3434
},
3535
],
36+
[
37+
'@docusaurus/plugin-content-docs',
38+
{
39+
id: 'community',
40+
path: 'community',
41+
routeBasePath: 'community',
42+
},
43+
]
3644
],
3745

3846
presets: [
@@ -78,6 +86,7 @@ const config = {
7886
},
7987
{to: 'blog', label: 'Blogs', position: 'left'},
8088
{to: 'releases/downloads', label: 'Downloads', position: 'left'},
89+
{to: 'community/sync', label: 'Community', position: 'left'}
8190
],
8291
},
8392
prism: {

website/static/index.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
<nav role="navigation" class="nav-menu w-nav-menu">
3434
<a href="#" class="nav-link w-nav-link">Home</a>
3535
<a href="https://xtable.apache.org/docs/setup/" class="nav-link w-nav-link">Docs</a>
36+
<a href="https://xtable.apache.org/community/sync" class="nav-link w-nav-link">Community</a>
3637
<a href="https://xtable.apache.org/blog" class="nav-link w-nav-link">Blogs</a><img src="images/break.svg" loading="lazy" alt="" class="image-10">
3738
<a href="https://xtable.apache.org/releases/downloads" class="nav-link w-nav-link">Downloads</a>
3839
<a href="https://github.com/apache/incubator-xtable" class="nav-icon-link1 w-inline-block"><img src="images/Github.svg" loading="lazy" alt=""></a>
@@ -50,6 +51,7 @@
5051
<nav role="navigation" class="nav-menu-copy w-nav-menu">
5152
<a href="#" class="nav-link-copy w-nav-link">Home</a>
5253
<a href="https://xtable.apache.org/docs/setup/" class="nav-link-copy w-nav-link">Docs</a>
54+
<a href="https://xtable.apache.org/community/sync" class="nav-link-copy w-nav-link">Community</a>
5355
<a href="https://xtable.apache.org/blog" class="nav-link-copy w-nav-link">Blogs</a>
5456
<a href="https://xtable.apache.org/releases/downloads" class="nav-link-copy w-nav-link">Downloads</a>
5557
<a href="https://github.com/apache/incubator-xtable" class="nav-link-copy w-nav-link">GitHub</a>

0 commit comments

Comments
 (0)