84 lines
2.6 KiB
TypeScript
84 lines
2.6 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import ReactLenis from "lenis/react";
|
|
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
|
|
import HeroOverlay from "@/components/sections/hero/HeroOverlay";
|
|
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="directional-hover"
|
|
defaultTextAnimation="entrance-slide"
|
|
borderRadius="pill"
|
|
contentWidth="small"
|
|
sizing="mediumLargeSizeLargeTitles"
|
|
background="none"
|
|
cardStyle="inset"
|
|
primaryButtonStyle="gradient"
|
|
secondaryButtonStyle="radial-glow"
|
|
headingFontWeight="normal"
|
|
>
|
|
<ReactLenis root>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarStyleFullscreen
|
|
navItems={[
|
|
{
|
|
name: "Main Site", id: "/home"
|
|
}
|
|
]}
|
|
brandName=""
|
|
button={{
|
|
text: "Get a Quote", href: "/home#contact"
|
|
}}
|
|
/>
|
|
</div>
|
|
|
|
<div id="hero" data-section="hero">
|
|
<HeroOverlay
|
|
title="Reece Transportation"
|
|
description="Delivering Premium Rock Materials With Precision"
|
|
buttons={[
|
|
{
|
|
text: "Explore Our Services", href: "/home"
|
|
},
|
|
{
|
|
text: "Get a Quote", href: "/home#contact"
|
|
}
|
|
]}
|
|
imageSrc="http://img.b2bpic.net/free-photo/heavy-machinery-used-construction-industry-engineering_23-2151307752.jpg"
|
|
imageAlt="Heavy machinery used in construction industry"
|
|
showDimOverlay={true}
|
|
showBlur={true}
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterLogoEmphasis
|
|
columns={[
|
|
{
|
|
items: [
|
|
{
|
|
label: "Main Site", href: "/home"
|
|
},
|
|
{
|
|
label: "Contact", href: "/home#contact"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
items: [
|
|
{
|
|
label: "Privacy Policy", href: "#"
|
|
}
|
|
]
|
|
}
|
|
]}
|
|
logoText="Reece Transportation"
|
|
/>
|
|
</div>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
} |