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