Trudy's picture
Initial commit with proper LFS tracking
5f07a23
raw
history blame contribute delete
540 Bytes
import Head from "next/head";
import dynamic from 'next/dynamic';
// Dynamically import the CanvasContainer component with SSR disabled
const CanvasContainer = dynamic(() => import('../components/CanvasContainer'), { ssr: false });
export default function HomePage() {
return (
<>
<Head>
<title>Chrome Sketch Generator</title>
<meta name="description" content="Turn your sketches into chrome sculptures" />
<link rel="icon" href="/favicon.ico" />
</Head>
<CanvasContainer />
</>
);
}