Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions website/i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,18 @@
"en": "Configuration",
"zh": "配置"
},
"apiReference": {
"en": "API reference",
"zh": "API 参考"
},
"ideIntegration": {
"en": "IDE integration",
"zh": "IDE 集成"
},
"migration": {
"en": "Migration",
"zh": "迁移"
},
"ecosystem": {
"en": "Ecosystem",
"zh": "生态"
Expand Down
12 changes: 8 additions & 4 deletions website/theme/components/HomeFooter.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,15 @@

.container {
display: flex;
justify-content: space-around;
justify-content: space-between;
gap: 2rem;
width: 100%;
max-width: 72rem;
padding-top: 3rem;
padding-bottom: 1rem;
padding: 3rem 2rem 1rem;

@media (max-width: 640px) {
padding-inline: 1.25rem;
}
}

.column {
Expand All @@ -27,7 +31,7 @@
h2 {
margin: 1rem 0;
font-size: 1.125rem;
font-weight: 700;
font-weight: 600;
line-height: 1.75rem;
}

Expand Down
20 changes: 20 additions & 0 deletions website/theme/components/HomeFooter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,18 @@ function useFooterData() {
title: t('configuration'),
link: getLink('/guide/configuration'),
},
{
title: t('apiReference'),
link: getLink('/guide/api-reference'),
},
{
title: t('ideIntegration'),
link: getLink('/guide/ide-integration'),
},
{
title: t('migration'),
link: getLink('/guide/migration'),
},
],
},
{
Expand Down Expand Up @@ -87,6 +99,14 @@ function useFooterData() {
title: 'Discord',
link: 'https://discord.gg/XsaKEEk4mW',
},
{
title: 'X',
link: 'https://x.com/rspack_dev',
},
{
title: 'Bluesky',
link: 'https://bsky.app/profile/rspack.dev',
},
],
},
];
Expand Down