import React from "react"; import Navbar from "../components/layouts/NavBar.jsx"; import dynamic from "next/dynamic"; import SectionTwo from "../components/layouts/SectionTwo.jsx"; const Section = dynamic(() => import("../components/layouts/Section.jsx")); const ContactFormSection = dynamic(() => import("../components/layouts/ContactFormSection.jsx") ); export default function Home() { return ( <>
); }