import React from "react"; import Navbar from "../Components/Layout/navbar.jsx"; import dynamic from "next/dynamic"; const Section = dynamic(() => import("../Components/Layout/section.jsx")); const ContactFormSection = dynamic(() => import("../Components/Layout/ContactFormSection.jsx") ); export default function Home() { return ( <>
); }