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.

30 lines
737 B
JavaScript
Raw Normal View History

import React from "react";
2023-05-16 15:42:34 -07:00
import Navbar from "../components/layouts/navbar.jsx";
import dynamic from "next/dynamic";
2023-05-16 15:42:34 -07:00
const Section = dynamic(() => import("../components/layouts/section.jsx"));
const ContactFormSection = dynamic(() =>
2023-05-16 15:42:34 -07:00
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="say hello"
buttonText="contact us"
/>
</>
);
}