2 Commits

Author SHA1 Message Date
ffcab8107a Update src/app/page.tsx 2026-05-04 20:54:09 +00:00
478365b073 Update src/app/page.tsx 2026-05-04 20:53:31 +00:00

View File

@@ -2,10 +2,10 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactSplit from '@/components/sections/contact/ContactSplit';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven';
import FooterBase from '@/components/sections/footer/FooterBase';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
import MediaAbout from '@/components/sections/about/MediaAbout';
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
@@ -164,24 +164,28 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactSplit
useInvertedBackground={true}
background={{ variant: "plain" }}
tag="Contact Us"
title="Ready to buy?"
description="Visit us at 24 Garnett St, Georgetown or message us via WhatsApp today."
imageSrc="http://img.b2bpic.net/free-photo/animated-eraser-notebook-still-life_52683-101646.jpg"
mediaAnimation="slide-up"
<ContactSplitForm
title="Get in Touch"
description="Contact us for your import needs, with regional offices available globally."
useInvertedBackground={false}
inputs={[
{ name: "name", type: "text", placeholder: "Full Name", required: true },
{ name: "email", type: "email", placeholder: "Email Address", required: true },
{ name: "office", type: "text", placeholder: "Select Office (Guyana, North America, Japan)" }
]}
textarea={{ name: "message", placeholder: "How can we help?", rows: 4 }}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
<FooterSimple
columns={[
{ title: "Navigation", items: [{ label: "Inventory", href: "#products" }, { label: "About", href: "#about" }] },
{ title: "Connect", items: [{ label: "WhatsApp", href: "https://wa.me/5926489566" }, { label: "Facebook", href: "https://facebook.com" }] }
{ title: "Guyana HQ", items: [{ label: "24 Garnett St, Georgetown" }] },
{ title: "Regional", items: [{ label: "North America: Toronto, ON" }, { label: "Japan: Yokohama" }] },
{ title: "Legal", items: [{ label: "Privacy Policy" }, { label: "Terms of Service" }] }
]}
logoText="Premiere Auto"
bottomLeftText="© 2025 Premiere Auto"
bottomRightText="All rights reserved."
/>
</div>
</ReactLenis>