forked from Rosetta/landing
Лендинг
This commit is contained in:
20
src/App.tsx
Normal file
20
src/App.tsx
Normal file
@@ -0,0 +1,20 @@
|
||||
// Import styles of packages that you've installed.
|
||||
// All packages except `@mantine/hooks` require styles imports
|
||||
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 './style.css'
|
||||
import { MessageSteps } from './components/MessageSteps/MessageSteps';
|
||||
|
||||
|
||||
export default function App() {
|
||||
return <MantineProvider>
|
||||
<HeroTitle></HeroTitle>
|
||||
<FeaturesGrid></FeaturesGrid>
|
||||
<MessageSteps></MessageSteps>
|
||||
<DownloadCenter></DownloadCenter>
|
||||
</MantineProvider>;
|
||||
}
|
||||
Reference in New Issue
Block a user