File size: 540 Bytes
5f07a23
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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 />
    </>
  );
}