Skip to content

Commit 71c457c

Browse files
authored
chore: delete contributors section for landing page due to unavailable cdn resources (#3493)
1 parent 86fd254 commit 71c457c

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

apps/website-new/docs/en/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ features:
2929
details: Supports Rspack and Webpack builds, accelerating your application builds.
3030
icon: 🦀
3131
- title: Development Experience
32-
details: Module federation supports dynamic type hints and chrome devtool to enhance the development experience.
32+
details: Module federation supports dynamic type hints and Chrome Devtool to enhance the development experience.
3333
icon: 🚀
3434
- title: Plugin System
3535
details: Hooks allow you to quickly define your own plugins to control the behavior of module loading.

apps/website-new/docs/zh/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ features:
2929
details: 支持 Rspack 和 Webpack 构建,可以加快你的应用构建。
3030
icon: 🦀
3131
- title: 开发体验
32-
details: Module federation 支持动态类型提示和 chrome devtool,以提高开发体验。
32+
details: Module federation 支持动态类型提示和 Chrome Devtool,以提高开发体验。
3333
icon: 🚀
3434
- title: 插件系统
3535
details: Hooks 允许你快速定义自己的插件来控制模块加载的行为。

apps/website-new/theme/components/HomeFooter/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ function useFooterData() {
7070
export function HomeFooter() {
7171
const footerData = useFooterData();
7272
return (
73-
<div className="flex flex-col border-t dark:border-dark-50 items-center mt-[80px]">
73+
<div className="flex flex-col border-t dark:border-dark-50 items-center">
7474
<div className="pt-8 pb-4 w-full justify-around max-w-6xl hidden sm:flex">
7575
{footerData.map((item, newKey) => (
7676
<div className="flex flex-col items-start" key={newKey}>

apps/website-new/theme/pages/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export function HomeLayout() {
1313
<div>
1414
{/* Landing Page */}
1515
<div
16-
className="relative border-b dark:border-dark-50"
16+
className="relative dark:border-dark-50"
1717
style={{
1818
background: 'var(--rp-home-bg)',
1919
minHeight: 'calc(80rem - var(--rp-nav-height))',
@@ -34,7 +34,7 @@ export function HomeLayout() {
3434
{/* <NoSSR>
3535
<Benchmark />
3636
</NoSSR> */}
37-
<Contributors />
37+
{/* <Contributors /> */}
3838
{/* Footer */}
3939
<HomeFooter />
4040
</div>

0 commit comments

Comments
 (0)