Switch to version 5: modified src/app/gallery/page.tsx

This commit is contained in:
2026-06-09 01:46:46 +00:00
parent 505d29e43d
commit 43be323bc1

View File

@@ -4,7 +4,6 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
import FooterBase from '@/components/sections/footer/FooterBase';
export default function GalleryPage() {
@@ -30,7 +29,8 @@ export default function GalleryPage() {
{ name: "Gallery", id: "/gallery" },
{ name: "Contact", id: "/contact" },
]}
button={{ text: "Get a Free Quote", href: "/contact" }}
button={{
text: "Get a Free Quote", href: "/contact" }}
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EsInlEOoSiMI8mFEzeygc6zaoo/uploaded-1780963238289-ovhlz3j6.png"
logoAlt="FloorCraft Logo"
brandName="FloorCraft"
@@ -57,27 +57,6 @@ export default function GalleryPage() {
/>
</div>
<div id="gallery-testimonials" data-section="gallery-testimonials">
<TestimonialCardSixteen
textboxLayout="default"
useInvertedBackground={true}
testimonials={[
{ id: "g-1", name: "Olivia Wilson", role: "Home Remodeler", company: "Alpharetta, GA", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-man-choosing-color_23-2148903521.jpg", imageAlt: "Olivia Wilson" },
{ id: "g-2", name: "Liam Brown", role: "Residential Client", company: "Roswell, GA", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/stylish-woman-wearing-yellow-bandana_273609-13338.jpg", imageAlt: "Liam Brown" },
{ id: "g-3", name: "Ava Garcia", role: "Custom Home Builder", company: "Atlanta, GA", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/front-view-happy-man-posing_23-2148563434.jpg", imageAlt: "Ava Garcia" },
{ id: "g-4", name: "Noah Miller", role: "Property Investor", company: "Sandy Springs, GA", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/expressive-young-girl-posing-studio_176474-68234.jpg", imageAlt: "Noah Miller" },
{ id: "g-5", name: "Sophia Davis", role: "Homeowner", company: "Johns Creek, GA", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/happy-relaxed-mature-business-man-standing-office-cafe-leaning-counter-holding-jacket-shoulder-smiling-camera_74855-10028.jpg", imageAlt: "Sophia Davis" }
]}
kpiItems={[
{ value: "Flawless", label: "Finishes" },
{ value: "Artistry", label: "in Every Plank" },
{ value: "Happy", label: "Homes" }
]}
title="Hear From Homeowners We've Transformed"
description="See why families trust FloorCraft for their most cherished spaces. Our gallery showcases not just floors, but homes brought to life."
animationType="depth-3d"
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
@@ -116,4 +95,4 @@ export default function GalleryPage() {
</ReactLenis>
</ThemeProvider>
);
}
}