diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..b180bc2 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,86 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; +import TeamCardTen from '@/components/sections/team/TeamCardTen'; +import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import { Users, BookOpen, Heart, Anchor } from "lucide-react"; + +export default function AboutPage() { + return ( + + + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+
+ ); +} \ No newline at end of file diff --git a/src/app/book/page.tsx b/src/app/book/page.tsx new file mode 100644 index 0000000..26bee81 --- /dev/null +++ b/src/app/book/page.tsx @@ -0,0 +1,49 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; +import ContactCenter from "@/components/sections/contact/ContactCenter"; +import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; + +export default function BookPage() { + return ( + + + +
+ +
+ +
+
+ ); +} \ No newline at end of file diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..798fcdd --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,59 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; +import ContactSplit from "@/components/sections/contact/ContactSplit"; +import FaqSplitText from "@/components/sections/faq/FaqSplitText"; +import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; + +export default function ContactPage() { + return ( + + + +
+ + +
+ +
+
+ ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 5d041e5..ed83292 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -31,117 +31,32 @@ export default function LandingPage() {
@@ -151,35 +66,9 @@ 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="Whether it's custom interior wood finishes or intricate tiling, our team brings professional care to every project in Volusia County." + description="Professional care for every carpentry and tile project in Volusia County." + features={[]} /> @@ -188,187 +77,29 @@ 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" - description="Browse our latest carpentry and tile installations across the county." + products={[]} />
-
- -
-
@@ -376,49 +107,12 @@ export default function LandingPage() { ); -} +} \ No newline at end of file