front-hub/src/components/landing/Landing.tsx

22 lines
480 B
TypeScript
Raw Normal View History

2022-11-18 16:51:10 +00:00
import { Box } from "@mui/material";
2022-11-17 12:25:23 +00:00
import Footer from "./Footer";
import Section1 from "./Section1";
import Section2 from "./Section2";
import Section3 from "./Section3";
import Section4 from "./Section4";
import Section5 from "./Section5";
export default function Landing() {
return (
<Box>
<Section1 />
<Section2 />
<Section3 />
<Section4 />
<Section5 />
<Footer />
</Box>
);
}