Files
49bd9060-1569-4baa-84c8-9ab…/src/app/contact/page.tsx

133 lines
4.2 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import AboutMetric from '@/components/sections/about/AboutMetric';
import ContactText from '@/components/sections/contact/ContactText';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import { Camera, Clock, Wallet } from "lucide-react";
export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
defaultTextAnimation="reveal-blur"
borderRadius="pill"
contentWidth="mediumLarge"
sizing="medium"
background="circleGradient"
cardStyle="gradient-bordered"
primaryButtonStyle="shadow"
secondaryButtonStyle="glass"
headingFontWeight="medium"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home", id: "/"},
{
name: "Services", id: "/services"},
{
name: "Projects", id: "/projects"},
{
name: "Reviews", id: "/reviews"},
{
name: "About", id: "/about"},
{
name: "FAQs", id: "/faq"},
{
name: "Get a Quote", id: "/contact"},
]}
brandName="GC Roofing"
/>
</div>
<div id="contact-options" data-section="contact-options">
<ContactText
useInvertedBackground={false}
background={{
variant: "plain"}}
text="Get Your Free, Itemized Quote Today"
buttons={[
{
text: "Call Now 07927282276", href: "tel:07927282276"},
{
text: "WhatsApp Us", href: "https://wa.me/447927282276"},
{
text: "Email Us", href: "mailto:quotes@gcroofing.co.uk"},
]}
/>
</div>
<div id="contact-highlights" data-section="contact-highlights">
<AboutMetric
useInvertedBackground={true}
title="Why Choose GC Roofing for Your Next Project"
metrics={[
{
icon: Clock,
label: "Fast Response", value: "Emergency Support"},
{
icon: Camera,
label: "Stay Informed", value: "Photographic Updates"},
{
icon: Wallet,
label: "Transparent Pricing", value: "No Hidden Costs"},
]}
metricsAnimation="slide-up"
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="GC Roofing"
columns={[
{
title: "Services", items: [
{
label: "New Slates & Tiled Roofs", href: "/services#slate-tile"},
{
label: "Flat Roof Replacement", href: "/services#flat-roof"},
{
label: "Chimney Removal/Rebuild", href: "/services#chimney"},
{
label: "Fascia, Soffits & Guttering", href: "/services#fascia-gutter"},
{
label: "Storm Damage & Emergency", href: "/services#storm-damage"},
{
label: "Skylights & Ventilation", href: "/services#skylights"},
],
},
{
title: "Company", items: [
{
label: "About Us", href: "/about"},
{
label: "Projects", href: "/projects"},
{
label: "Reviews", href: "/reviews"},
{
label: "FAQs", href: "/faq"},
{
label: "Contact", href: "/contact"},
],
},
{
title: "Legal", items: [
{
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service", href: "#"},
],
},
]}
copyrightText="© 2024 GC Roofing. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}