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.

51 lines
1.2 KiB
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 />
2023-04-20 11:18:26 -07:00
<Section
key="aboutSection0"
videoUrl="https://vid.puffyan.us/latest_version?id=--khbXchTeE&itag=22"
text="about"
buttonTwoText="say hello"
2023-04-20 11:18:26 -07:00
buttonLink="#contact"
buttonOneText="watch"
videoId="uu01xBw_BVE"
>
</Section>
<Section
key="aboutSection1"
videoUrl="https://vid.puffyan.us/latest_version?id=--khbXchTeE&itag=22"
text="core team"
buttonOneText="watch"
buttonLink=""
videoId="uu01xBw_BVE"
/>
<Section
key="aboutSection3"
videoUrl="https://vid.puffyan.us/latest_version?id=--khbXchTeE&itag=22"
text="what we do"
buttonOneText="watch"
buttonLink=""
videoId="uu01xBw_BVE"
/>
<ContactFormSection
text="say hello"
2023-04-20 11:18:26 -07:00
buttonText="contact us"
/>
</>
);
}