import { Box } from "@mui/material"; import Section1 from "./Section1"; import Section2 from "./Section2"; import Section3 from "./Section3"; import Section4 from "./Section4"; import Section5 from "./Section5"; import FloatingSupportChat from "@root/components/FloatingSupportChat/FloatingSupportChat"; interface Props { templaterOnly?: boolean; } export default function Landing({ templaterOnly = false }: Props) { return ( ); }