forked from Rosetta/landing
25 lines
760 B
TypeScript
25 lines
760 B
TypeScript
import '@mantine/core/styles.css';
|
|
|
|
import { MantineProvider } from '@mantine/core';
|
|
import { HeroTitle } from './components/HeroTitle/HeroTitle';
|
|
import { DownloadCenter } from './components/DownloadCenter/DownloadCenter';
|
|
import { FeaturesGrid } from './components/FeaturesGrid/FeaturesGrid';
|
|
import { SEO } from './components/SEO/SEO';
|
|
import './style.css'
|
|
import { MessageSteps } from './components/MessageSteps/MessageSteps';
|
|
import { Footer } from './components/Footer/Footer';
|
|
|
|
|
|
export default function App() {
|
|
return (
|
|
<MantineProvider>
|
|
<SEO />
|
|
<HeroTitle></HeroTitle>
|
|
<FeaturesGrid></FeaturesGrid>
|
|
<MessageSteps></MessageSteps>
|
|
<DownloadCenter></DownloadCenter>
|
|
<Footer></Footer>
|
|
</MantineProvider>
|
|
)
|
|
}
|