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.
old-shiloh-website/pages/hireus.js

30 lines
734 B
JavaScript

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 (
<>
<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"
/>
</>
);
}