2023-12-31 02:53:25 +00:00
|
|
|
import React from "react";
|
|
|
|
import { CssBaseline, useMediaQuery, useTheme } from "@mui/material";
|
|
|
|
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";
|
2023-12-14 09:40:53 +00:00
|
|
|
|
2023-12-31 02:53:25 +00:00
|
|
|
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-12-31 02:53:25 +00:00
|
|
|
const theme = useTheme();
|
|
|
|
const isTablet = useMediaQuery(theme.breakpoints.down(1000));
|
2023-12-14 09:40:53 +00:00
|
|
|
|
2023-12-31 02:53:25 +00:00
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<CssBaseline />
|
|
|
|
<Header />
|
|
|
|
<Hero />
|
|
|
|
<Counter />
|
|
|
|
{/* <Collaboration/> */}
|
|
|
|
<HowItWorks />
|
|
|
|
<BusinessPluses />
|
|
|
|
<HowToUse />
|
|
|
|
{/*<WhatTheySay/>*/}
|
|
|
|
{/*<StartWithTemplates/>*/}
|
|
|
|
<WhatTheFeatures />
|
|
|
|
{/*<Blog/>*/}
|
|
|
|
{/*<Questions/>*/}
|
|
|
|
<Footer />
|
|
|
|
</>
|
|
|
|
);
|
2023-10-04 22:21:17 +00:00
|
|
|
}
|