mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-29 16:15:04 +00:00
24 lines
618 B
TypeScript
24 lines
618 B
TypeScript
import * as React from 'react';
|
|
import Box from '@mui/material/Box';
|
|
import Divider from '@mui/material/Divider';
|
|
import Hero from '../components/Hero';
|
|
import Highlights from '../components/Highlights';
|
|
import FAQ from '../components/FAQ';
|
|
import Footer from '../components/Footer';
|
|
|
|
export default function Index() {
|
|
return (
|
|
<>
|
|
<Hero/>
|
|
<Box sx={{bgcolor: 'background.default'}}>
|
|
<Divider/>
|
|
<Highlights/>
|
|
<Divider/>
|
|
<FAQ/>
|
|
<Divider/>
|
|
<Footer/>
|
|
</Box>
|
|
</>
|
|
);
|
|
}
|