2023-10-04 22:21:17 +00:00
|
|
|
import React from 'react';
|
2023-10-10 22:22:03 +00:00
|
|
|
import {CssBaseline, useMediaQuery, useTheme} from "@mui/material";
|
2023-10-04 22:21:17 +00:00
|
|
|
import Header from './HeaderLanding';
|
|
|
|
import Footer from './FooterLanding';
|
|
|
|
import Hero from './Hero';
|
|
|
|
import Questions from './Questions';
|
|
|
|
import Counter from './Counter';
|
|
|
|
import Blog from './Blog';
|
|
|
|
import HowItWorks from './HowItWorks';
|
|
|
|
import BusinessPluses from './BusinessPluses';
|
|
|
|
import HowToUse from './HowToUse';
|
|
|
|
import WhatTheySay from './WhatTheySay';
|
|
|
|
import StartWithTemplates from './StartWithTemplates';
|
|
|
|
import WhatTheFeatures from './WhatTheFeatures';
|
2023-10-10 22:22:03 +00:00
|
|
|
import FullScreenDialog from "./headerMobileLanding";
|
2023-10-23 09:37:47 +00:00
|
|
|
import Collaboration from "./Collaboration";
|
2023-10-04 22:21:17 +00:00
|
|
|
|
|
|
|
export default function Landing() {
|
2023-10-10 22:22:03 +00:00
|
|
|
const theme = useTheme();
|
|
|
|
const isTablet = useMediaQuery(theme.breakpoints.down(1000));
|
2023-10-04 22:21:17 +00:00
|
|
|
return (
|
|
|
|
<>
|
2023-10-10 22:22:03 +00:00
|
|
|
<CssBaseline />
|
2023-10-23 17:27:04 +00:00
|
|
|
<Header/>
|
2023-10-04 22:21:17 +00:00
|
|
|
<Hero/>
|
|
|
|
<Counter/>
|
2023-12-13 20:36:17 +00:00
|
|
|
{/* <Collaboration/> */}
|
2023-10-04 22:21:17 +00:00
|
|
|
<HowItWorks/>
|
|
|
|
<BusinessPluses/>
|
|
|
|
<HowToUse/>
|
2023-10-07 07:09:00 +00:00
|
|
|
{/*<WhatTheySay/>*/}
|
|
|
|
{/*<StartWithTemplates/>*/}
|
2023-10-04 22:21:17 +00:00
|
|
|
<WhatTheFeatures/>
|
2023-10-07 07:09:00 +00:00
|
|
|
{/*<Blog/>*/}
|
2023-10-23 09:37:47 +00:00
|
|
|
{/*<Questions/>*/}
|
2023-10-04 22:21:17 +00:00
|
|
|
<Footer />
|
|
|
|
</>
|
|
|
|
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|