forked from mehatab/fettle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.tsx
22 lines (20 loc) · 902 Bytes
/
index.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import type { NextPage } from 'next'
import Image from 'next/image'
import IncidentsSection from "../src/incidents"
import ServicesSection from "../src/services"
const Home: NextPage = () => {
return (
<div className='h-full w-full '>
<div className="mt-20 absolute inset-0 bg-[url(/grid.svg)] bg-center [mask-image:linear-gradient(180deg,white,rgba(255,255,255,0))]"></div>
<div className="w-full h-40 absolute bg-light-gray dark:purple dark:bg-black">
<div className="sm:ml-0 ml-5 mr-0 mt-3 md:pl-80 md:pr-80 sm:w-full h-full bg-purple-500 dark:bg-black">
<Image src="/s3df-status/slac_s3df_acronym_long_screen_small.png" width={345} height={37} className="w-40 h-16" alt="Tailwind Play" />
</div>
</div>
<div className='mt-20 w-full absolute overflow-scroll '>
<ServicesSection />
</div >
</div>
)
}
export default Home;