first commit
This commit is contained in:
9
src/app/page.tsx
Normal file
9
src/app/page.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import { HomePage } from "@/components/home/home-page";
|
||||
import { getSiteContent } from "@/lib/site-content";
|
||||
|
||||
export const dynamic = "force-dynamic";
|
||||
|
||||
export default async function Page() {
|
||||
const content = await getSiteContent();
|
||||
return <HomePage content={content} />;
|
||||
}
|
||||
Reference in New Issue
Block a user