Add src/app/products/product-3/page.tsx

This commit is contained in:
2026-06-08 16:13:11 +00:00
parent 9ed5e8810d
commit 2b9e29ca59

View File

@@ -0,0 +1,93 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import FooterCard from '@/components/sections/footer/FooterCard';
import SplitAbout from '@/components/sections/about/SplitAbout';
import { Facebook, Instagram, Video, Handshake } from "lucide-react";
export default function ProductThreePage() {
return (
<ThemeProvider
defaultButtonVariant="elastic-effect"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="small"
sizing="largeSizeMediumTitles"
background="floatingGradient"
cardStyle="gradient-bordered"
primaryButtonStyle="double-inset"
secondaryButtonStyle="layered"
headingFontWeight="medium"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home", id: "#home"
},
{
name: "About Us", id: "#about"
},
{
name: "Products", href: "/products"
},
{
name: "Testimonials", id: "#testimonials"
},
{
name: "FAQs", id: "#faqs"
},
{
name: "Contact", id: "#contact"
},
]}
brandName="GFFTC Equine"
/>
</div>
<div id="product-detail" data-section="product-detail">
<SplitAbout
textboxLayout="default"
useInvertedBackground={false}
title="GFFTC Anatomical Comfort Bridle: Enhanced Communication and Well-being"
description="Discover superior comfort and enhanced communication with the GFFTC Anatomical Comfort Bridle. Meticulously designed to alleviate pressure points and provide a gentle yet precise connection, this bridle supports your horse's natural anatomy."
bulletPoints={[
{ icon: Handshake, title: "Pressure-Free Design", description: "Reduces pressure on sensitive facial nerves, enhancing comfort and focus." },
{ icon: Handshake, title: "Anatomical Crownpiece", description: "Contoured design allows for complete ear freedom and minimizes interference." },
{ icon: Handshake, title: "Luxurious Materials", description: "Crafted from soft, supple Italian leather with durable stainless steel hardware." },
{ icon: Handshake, title: "Improved Communication", description: "Fosters a clearer and more responsive connection between horse and rider." }
]}
imageSrc="http://img.b2bpic.net/free-photo/pretty-girl-horse-farm_1157-23377.jpg"
imageAlt="Close-up of a horse's head wearing the Anatomical Comfort Bridle"
imagePosition="right"
mediaAnimation="slide-up"
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="GFFTC Equine"
copyrightText="© 2024 GFFTC Equine. All rights reserved."
socialLinks={[
{
icon: Facebook,
href: "#", ariaLabel: "Facebook"
},
{
icon: Instagram,
href: "#", ariaLabel: "Instagram"
},
{
icon: Video,
href: "#", ariaLabel: "YouTube"
},
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}