frontPanel/src/pages/Landing/Landing.tsx

41 lines
1.1 KiB
TypeScript
Raw Normal View History

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-31 02:53:25 +00:00
import StartWithTemplates from "./StartWithTemplates";
import WhatTheFeatures from "./WhatTheFeatures";
import FullScreenDialog from "./headerMobileLanding";
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-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
}