This commit is contained in:
砂糖
2025-11-21 13:36:06 +08:00
commit 7cd50654ed
112 changed files with 14246 additions and 0 deletions

15
app/[locale]/page.tsx Normal file
View File

@@ -0,0 +1,15 @@
import HomeComponent from "@/components/home";
// export const dynamic = "force-static";
export default function Home() {
return <HomeComponent />;
}
// export async function generateStaticParams() {
// return [
// { locale: 'en' },
// { locale: 'zh' },
// { locale: 'ja' },
// ]
// }