-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path\
22 lines (21 loc) · 723 Bytes
/
\
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import Navbar from './components/Navbar'
import camera from '../public/Camera.png'
import Image from 'next/image'
export default function Home() {
return (
<main>
<Navbar />
<div className='bg-[#161032] flex h-screen min-h-[600px] w-screen justify-center items-center'>
<div>
<h1 className='text-white text-center font-bold text-9xl'>SOAR 2024</h1>
<h1 className='text-white text-center font-bold text-xl'>Welcome to SOAR 2024</h1>
<svg className="absolute" height="150" width="500">
<ellipse cx="240" cy="100" rx="220" ry="30" fill="purple" />
</svg>
</div>
</div>
<div className='h-screen'>
</div>
</main>
)
}