This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
2023-07-11 11:17:43 -07:00

31 lines
826 B
JavaScript

import React from "react";
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 (
<>
<Navbar />
<Section
key="hireUs0"
videoUrl="https://vid.puffyan.us/latest_version?id=--khbXchTeE&itag=22"
text="hire us"
buttonLink="#contact"
buttonTwoText="contact us"
buttonOneText="watch"
videoId="uu01xBw_BVE"
/>
<ContactFormSection
text="contact us"
buttonText="contact us"
email="hello-izmqxby3qjkffhh6w7a9s2j3qwj7zu93iji7gxjcn@shilohcode.com"
/>
</>
);
}