From 5df95757a3bb5ebfa12f7cf76b57489a546ef394 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 6 May 2026 00:01:48 +0000 Subject: [PATCH] Switch to version 1: modified src/app/page.tsx --- src/app/page.tsx | 348 ++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 327 insertions(+), 21 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index ed83292..5d041e5 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -31,32 +31,117 @@ export default function LandingPage() {
@@ -66,9 +151,35 @@ export default function LandingPage() { textboxLayout="default" gridVariant="three-columns-all-equal-width" useInvertedBackground={true} + features={[ + { + title: "Custom Carpentry", + description: "From built-ins to trim, we provide precise woodwork.", + imageSrc: "http://img.b2bpic.net/free-photo/man-engraving-wood-outdoors-close-up_23-2149061715.jpg", + }, + { + title: "Precision Tiling", + description: "Expert layout and installation for bathrooms, floors, and backsplashes.", + imageSrc: "http://img.b2bpic.net/free-photo/small-bathroom-with-modern-style-ai-generated_23-2150694894.jpg", + }, + { + title: "Home Consults", + description: "We help you select materials that fit your home's aesthetic.", + imageSrc: "http://img.b2bpic.net/free-photo/high-angle-view-hand-holding-small-house-model-pencil-blueprint_23-2148203980.jpg", + }, + { + title: "Custom Furniture", + description: "Bespoke tables and storage solutions.", + imageSrc: "http://img.b2bpic.net/free-photo/wood-worker-his-shop-working-with-tools-equipment_23-2150861576.jpg", + }, + { + title: "Kitchen Refacing", + description: "Giving your cabinets a fresh, updated coastal look.", + imageSrc: "http://img.b2bpic.net/free-photo/carpenter-measuring-with-ruler-pencil_23-2148679131.jpg", + }, + ]} title="Our Specialized Services" - description="Professional care for every carpentry and tile project in Volusia County." - features={[]} + description="Whether it's custom interior wood finishes or intricate tiling, our team brings professional care to every project in Volusia County." /> @@ -77,29 +188,187 @@ export default function LandingPage() { animationType="slide-up" textboxLayout="default" gridVariant="three-columns-all-equal-width" + useInvertedBackground={false} + products={[ + { + id: "1", + brand: "Carpentry", + name: "Custom Kitchen Cabinetry", + price: "$$$", + rating: 5, + reviewCount: "12", + imageSrc: "http://img.b2bpic.net/free-photo/background-with-empty-wooden-table-with-tablecloth_93675-130865.jpg", + }, + { + id: "2", + brand: "Carpentry", + name: "Built-in Bookshelves", + price: "$$", + rating: 5, + reviewCount: "8", + imageSrc: "http://img.b2bpic.net/free-photo/close-up-minimalist-fireplace_23-2148238611.jpg", + }, + { + id: "3", + brand: "Tile", + name: "Modern Bathroom Tile", + price: "$$$", + rating: 5, + reviewCount: "15", + imageSrc: "http://img.b2bpic.net/free-photo/photo-ground-texture-pattern_58702-11686.jpg", + }, + { + id: "4", + brand: "Carpentry", + name: "Entryway Bench", + price: "$", + rating: 5, + reviewCount: "5", + imageSrc: "http://img.b2bpic.net/free-photo/black-stone-tile-wall-textures_74190-2412.jpg", + }, + { + id: "5", + brand: "Tile", + name: "Patterned Backsplash", + price: "$$", + rating: 5, + reviewCount: "10", + imageSrc: "http://img.b2bpic.net/free-photo/people-hands-getting-bottle-red-wine_53876-23320.jpg", + }, + { + id: "6", + brand: "Carpentry", + name: "Custom Door Frames", + price: "$$", + rating: 5, + reviewCount: "7", + imageSrc: "http://img.b2bpic.net/free-photo/wood-worker-his-shop-working-with-tools-equipment_23-2150861574.jpg", + }, + ]} title="Recent Projects Gallery" - products={[]} + description="Browse our latest carpentry and tile installations across the county." />
+
+ +
+
@@ -107,12 +376,49 @@ export default function LandingPage() { ); -} \ No newline at end of file +}