Let's create lightning-fast, SEO-friendly pages for your app! π
1 const LandingPage: React.FC = () => {
2 return (
3 <div>
4 <Head>
5 <title>AI Startup Landing Page</title>
6 <meta name='description' content='Landing page for an AI startup' />
7 <link rel='icon' href='/favicon.ico' />
8 </Head>
9 <div className='bg-gray-100 min-h-screen flex items-center justify-center'>
10 <div className='max-w-4xl mx-auto px-4 py-8 bg-white shadow-md rounded-lg'>
11 <h1 className='text-4xl font-bold text-center mb-4'>
12 Welcome to our AI Startup
13 </h1>
14 <p className='text-lg text-gray-700 mb-6 text-center'>
15 We are here to revolutionize the world with AI.
16 </p>
17 <div className='flex justify-center'>
18 <a
19 href='#contact'
20 className='bg-blue-500 hover:bg-blue-600
21 text-white px-6 py-3 rounded-lg font-semibold'
22 >
23 Contact Us
24 </a>
25 </div>
26 </div>
27 </div>
28 <div id='contact' className='bg-blue-500 py-8'>
29 <div className='max-w-4xl mx-auto px-4'>
30 <h2 className='text-3xl font-bold text-white mb-4'>
31 Contact Us
32 </h2>
33 <p className='text-lg text-white mb-6'>
34 Ready to take your business to the next level with AI? Contact us
35 now!
36 </p>
37 <div className='flex justify-center'>
38 <a
39 href='mailto:info@example.com'
40 className='bg-white text-blue-500
41 hover:text-blue-600 px-6 py-3 rounded-lg font-semibold'
42 >
43 Email Us
44 </a>
45 </div>
46 </div>
47 </div>
48 </div>
49 );
50 };
51 export default LandingPage;