diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 68dfebc..8c463d9 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -18,8 +18,7 @@ export default function AboutPage() { const footerColumns = [ { - title: "Services", - items: [ + title: "Services", items: [ { label: "Garden Design", href: "/services" }, { label: "Outdoor Living", href: "/services" }, { label: "Water Features", href: "/services" }, @@ -27,8 +26,7 @@ export default function AboutPage() { ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, { label: "Our Team", href: "/team" }, { label: "Portfolio", href: "/portfolio" }, @@ -36,11 +34,10 @@ export default function AboutPage() { ], }, { - title: "Resources", - items: [ - { label: "FAQ", href: "/contact" }, + title: "Resources", items: [ + { label: "FAQ", href: "#faq" }, { label: "Design Tips", href: "#" }, - { label: "Testimonials", href: "#" }, + { label: "Testimonials", href: "#testimonials" }, { label: "Privacy Policy", href: "#" }, ], }, @@ -64,9 +61,7 @@ export default function AboutPage() { brandName="Prestige Landscapes" navItems={navItems} button={{ - text: "Request Consultation", - href: "/contact", - }} + text: "Request Consultation", href: "/contact"}} /> @@ -107,55 +102,21 @@ export default function AboutPage() { animationType="slide-up" groups={[ { - id: "leadership", - groupTitle: "Executive Team", - members: [ + id: "leadership", groupTitle: "Executive Team", members: [ { - id: "1", - title: "James Richardson", - subtitle: "Founder & Principal Designer", - detail: "james@prestigelandscapes.com", - imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=1", - imageAlt: "James Richardson", - }, + id: "1", title: "James Richardson", subtitle: "Founder & Principal Designer", detail: "james@prestigelandscapes.com", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageAlt: "James Richardson"}, { - id: "2", - title: "Elizabeth Van Der Berg", - subtitle: "Creative Director", - detail: "elizabeth@prestigelandscapes.com", - imageSrc: "http://img.b2bpic.net/free-photo/attractive-blond-business-woman-white-shirt-grey-background_613910-11739.jpg?_wi=1", - imageAlt: "Elizabeth Van Der Berg", - }, + id: "2", title: "Elizabeth Van Der Berg", subtitle: "Creative Director", detail: "elizabeth@prestigelandscapes.com", imageSrc: "http://img.b2bpic.net/free-photo/attractive-blond-business-woman-white-shirt-grey-background_613910-11739.jpg", imageAlt: "Elizabeth Van Der Berg"}, ], }, { - id: "designers", - groupTitle: "Design Team", - members: [ + id: "designers", groupTitle: "Design Team", members: [ { - id: "3", - title: "Marcus Chen", - subtitle: "Senior Landscape Architect", - detail: "marcus@prestigelandscapes.com", - imageSrc: "http://img.b2bpic.net/free-photo/smiling-man-with-blue-shirt-schematics_23-2148269824.jpg?_wi=1", - imageAlt: "Marcus Chen", - }, + id: "3", title: "Marcus Chen", subtitle: "Senior Landscape Architect", detail: "marcus@prestigelandscapes.com", imageSrc: "http://img.b2bpic.net/free-photo/smiling-man-with-blue-shirt-schematics_23-2148269824.jpg", imageAlt: "Marcus Chen"}, { - id: "4", - title: "Sofia Rodriguez", - subtitle: "Garden Designer", - detail: "sofia@prestigelandscapes.com", - imageSrc: "http://img.b2bpic.net/free-photo/smiling-happy-florist-her-nursery-standing-holding-potted-combination-succulents-her-hands-as-she-tends-gardenplants-greenhouse_158595-6976.jpg?_wi=1", - imageAlt: "Sofia Rodriguez", - }, + id: "4", title: "Sofia Rodriguez", subtitle: "Garden Designer", detail: "sofia@prestigelandscapes.com", imageSrc: "http://img.b2bpic.net/free-photo/smiling-happy-florist-her-nursery-standing-holding-potted-combination-succulents-her-hands-as-she-tends-gardenplants-greenhouse_158595-6976.jpg", imageAlt: "Sofia Rodriguez"}, { - id: "5", - title: "Thomas Beaumont", - subtitle: "Hardscape Specialist", - detail: "thomas@prestigelandscapes.com", - imageSrc: "http://img.b2bpic.net/free-photo/vertical-portrait-young-attractive-bearded-dark-skinned-farmer-blue-t-shirt-with-garden-tools-holding-hands-crossed-looking-aside-with-confident-face-expression_176420-19901.jpg?_wi=1", - imageAlt: "Thomas Beaumont", - }, + id: "5", title: "Thomas Beaumont", subtitle: "Hardscape Specialist", detail: "thomas@prestigelandscapes.com", imageSrc: "http://img.b2bpic.net/free-photo/vertical-portrait-young-attractive-bearded-dark-skinned-farmer-blue-t-shirt-with-garden-tools-holding-hands-crossed-looking-aside-with-confident-face-expression_176420-19901.jpg", imageAlt: "Thomas Beaumont"}, ], }, ]} diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 8b11f68..70b4a45 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -18,8 +18,7 @@ export default function ContactPage() { const footerColumns = [ { - title: "Services", - items: [ + title: "Services", items: [ { label: "Garden Design", href: "/services" }, { label: "Outdoor Living", href: "/services" }, { label: "Water Features", href: "/services" }, @@ -27,8 +26,7 @@ export default function ContactPage() { ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, { label: "Our Team", href: "/team" }, { label: "Portfolio", href: "/portfolio" }, @@ -36,11 +34,10 @@ export default function ContactPage() { ], }, { - title: "Resources", - items: [ - { label: "FAQ", href: "/contact" }, + title: "Resources", items: [ + { label: "FAQ", href: "#faq" }, { label: "Design Tips", href: "#" }, - { label: "Testimonials", href: "#" }, + { label: "Testimonials", href: "#testimonials" }, { label: "Privacy Policy", href: "#" }, ], }, @@ -68,9 +65,7 @@ export default function ContactPage() { brandName="Prestige Landscapes" navItems={navItems} button={{ - text: "Request Consultation", - href: "/contact", - }} + text: "Request Consultation", href: "/contact"}} /> @@ -85,13 +80,11 @@ export default function ContactPage() { { name: "address", type: "text", placeholder: "Property Address", required: true }, ]} textarea={{ - name: "message", - placeholder: "Tell us about your vision, property size, and any specific requirements...", - rows: 6, + name: "message", placeholder: "Tell us about your vision, property size, and any specific requirements...", rows: 6, required: true, }} useInvertedBackground={true} - imageSrc="http://img.b2bpic.net/free-photo/beautiful-luxury-swimming-pool-with-palm-trees-thai-style-decoration_1258-111445.jpg?_wi=3" + imageSrc="http://img.b2bpic.net/free-photo/beautiful-luxury-swimming-pool-with-palm-trees-thai-style-decoration_1258-111445.jpg" imageAlt="Luxury outdoor living space" mediaAnimation="slide-up" mediaPosition="right" @@ -104,35 +97,17 @@ export default function ContactPage() { @@ -100,12 +96,12 @@ export default function HomePage() { ]} useInvertedBackground={true} buttons={[ - { text: "Learn More", href: "/services" }, + { text: "Learn More", href: "#services" }, ]} /> -
+
+
+ +
+
diff --git a/src/app/portfolio/page.tsx b/src/app/portfolio/page.tsx index 1cf8ac3..858bc60 100644 --- a/src/app/portfolio/page.tsx +++ b/src/app/portfolio/page.tsx @@ -17,8 +17,7 @@ export default function PortfolioPage() { const footerColumns = [ { - title: "Services", - items: [ + title: "Services", items: [ { label: "Garden Design", href: "/services" }, { label: "Outdoor Living", href: "/services" }, { label: "Water Features", href: "/services" }, @@ -26,8 +25,7 @@ export default function PortfolioPage() { ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, { label: "Our Team", href: "/team" }, { label: "Portfolio", href: "/portfolio" }, @@ -35,11 +33,10 @@ export default function PortfolioPage() { ], }, { - title: "Resources", - items: [ - { label: "FAQ", href: "/contact" }, + title: "Resources", items: [ + { label: "FAQ", href: "#faq" }, { label: "Design Tips", href: "#" }, - { label: "Testimonials", href: "#" }, + { label: "Testimonials", href: "#testimonials" }, { label: "Privacy Policy", href: "#" }, ], }, @@ -63,9 +60,7 @@ export default function PortfolioPage() { brandName="Prestige Landscapes" navItems={navItems} button={{ - text: "Request Consultation", - href: "/contact", - }} + text: "Request Consultation", href: "/contact"}} />
@@ -81,47 +76,17 @@ export default function PortfolioPage() { useInvertedBackground={true} products={[ { - id: "1", - name: "Hillside Estate Transformation", - price: "$485K", - imageSrc: "http://img.b2bpic.net/free-photo/amazing-gardens-luxury-hotel-sunset-bodrum-turkey_627829-7146.jpg", - imageAlt: "Hillside estate landscape transformation", - }, + id: "1", name: "Hillside Estate Transformation", price: "$485K", imageSrc: "http://img.b2bpic.net/free-photo/amazing-gardens-luxury-hotel-sunset-bodrum-turkey_627829-7146.jpg", imageAlt: "Hillside estate landscape transformation"}, { - id: "2", - name: "Contemporary Urban Garden", - price: "$125K", - imageSrc: "http://img.b2bpic.net/free-photo/park-with-benches-lamp_23-2147659194.jpg", - imageAlt: "Contemporary urban garden design", - }, + id: "2", name: "Contemporary Urban Garden", price: "$125K", imageSrc: "http://img.b2bpic.net/free-photo/park-with-benches-lamp_23-2147659194.jpg", imageAlt: "Contemporary urban garden design"}, { - id: "3", - name: "Resort-Style Pool Complex", - price: "$325K", - imageSrc: "http://img.b2bpic.net/free-photo/young-girl-two-her-multiracial-male-friends-relaxing-sunbeds-near-swimming-pool_1157-49500.jpg", - imageAlt: "Resort-style pool complex", - }, + id: "3", name: "Resort-Style Pool Complex", price: "$325K", imageSrc: "http://img.b2bpic.net/free-photo/young-girl-two-her-multiracial-male-friends-relaxing-sunbeds-near-swimming-pool_1157-49500.jpg", imageAlt: "Resort-style pool complex"}, { - id: "4", - name: "Mediterranean Villa Grounds", - price: "$275K", - imageSrc: "http://img.b2bpic.net/free-photo/italy-architecture-outdoor-landmark-europe_1203-6325.jpg", - imageAlt: "Mediterranean villa landscape", - }, + id: "4", name: "Mediterranean Villa Grounds", price: "$275K", imageSrc: "http://img.b2bpic.net/free-photo/italy-architecture-outdoor-landmark-europe_1203-6325.jpg", imageAlt: "Mediterranean villa landscape"}, { - id: "5", - name: "Zen Sanctuary Design", - price: "$185K", - imageSrc: "http://img.b2bpic.net/free-photo/balance-stone-quiet-temple-background_1372-102.jpg", - imageAlt: "Zen sanctuary garden design", - }, + id: "5", name: "Zen Sanctuary Design", price: "$185K", imageSrc: "http://img.b2bpic.net/free-photo/balance-stone-quiet-temple-background_1372-102.jpg", imageAlt: "Zen sanctuary garden design"}, { - id: "6", - name: "Waterfront Property Redesign", - price: "$425K", - imageSrc: "http://img.b2bpic.net/free-photo/lake-house_649448-539.jpg", - imageAlt: "Waterfront property landscape redesign", - }, + id: "6", name: "Waterfront Property Redesign", price: "$425K", imageSrc: "http://img.b2bpic.net/free-photo/lake-house_649448-539.jpg", imageAlt: "Waterfront property landscape redesign"}, ]} /> diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index 811d90b..a8ef943 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -18,8 +18,7 @@ export default function ServicesPage() { const footerColumns = [ { - title: "Services", - items: [ + title: "Services", items: [ { label: "Garden Design", href: "/services" }, { label: "Outdoor Living", href: "/services" }, { label: "Water Features", href: "/services" }, @@ -27,8 +26,7 @@ export default function ServicesPage() { ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, { label: "Our Team", href: "/team" }, { label: "Portfolio", href: "/portfolio" }, @@ -36,11 +34,10 @@ export default function ServicesPage() { ], }, { - title: "Resources", - items: [ - { label: "FAQ", href: "/contact" }, + title: "Resources", items: [ + { label: "FAQ", href: "#faq" }, { label: "Design Tips", href: "#" }, - { label: "Testimonials", href: "#" }, + { label: "Testimonials", href: "#testimonials" }, { label: "Privacy Policy", href: "#" }, ], }, @@ -64,9 +61,7 @@ export default function ServicesPage() { brandName="Prestige Landscapes" navItems={navItems} button={{ - text: "Request Consultation", - href: "/contact", - }} + text: "Request Consultation", href: "/contact"}} /> @@ -79,42 +74,24 @@ export default function ServicesPage() { features={[ { id: 1, - title: "Luxury Garden Design", - description: "Bespoke outdoor garden spaces featuring premium plantings, hardscaping, and water features designed to complement your home's architecture. From intimate cottage gardens to sprawling estate grounds, we create botanical masterpieces.", - phoneOne: { - imageSrc: "http://img.b2bpic.net/free-photo/luxury-outdoor-hotel_1150-12915.jpg?_wi=2", - imageAlt: "Garden design showcase", - }, + title: "Luxury Garden Design", description: "Bespoke outdoor garden spaces featuring premium plantings, hardscaping, and water features designed to complement your home's architecture. From intimate cottage gardens to sprawling estate grounds, we create botanical masterpieces.", phoneOne: { + imageSrc: "http://img.b2bpic.net/free-photo/luxury-outdoor-hotel_1150-12915.jpg", imageAlt: "Garden design showcase"}, phoneTwo: { - imageSrc: "http://img.b2bpic.net/free-photo/white-pink-blue-flowers-resembling-river-surrounded-by-trees_181624-20820.jpg?_wi=2", - imageAlt: "Flower garden example", - }, + imageSrc: "http://img.b2bpic.net/free-photo/white-pink-blue-flowers-resembling-river-surrounded-by-trees_181624-20820.jpg", imageAlt: "Flower garden example"}, }, { id: 2, - title: "Outdoor Living Spaces", - description: "Sophisticated patios, pergolas, and entertainment areas that extend your living space into nature with elegant design and premium materials. Perfect for entertaining or quiet reflection.", - phoneOne: { - imageSrc: "http://img.b2bpic.net/free-photo/beautiful-luxury-swimming-pool-with-palm-trees-thai-style-decoration_1258-111445.jpg?_wi=2", - imageAlt: "Luxury patio design", - }, + title: "Outdoor Living Spaces", description: "Sophisticated patios, pergolas, and entertainment areas that extend your living space into nature with elegant design and premium materials. Perfect for entertaining or quiet reflection.", phoneOne: { + imageSrc: "http://img.b2bpic.net/free-photo/beautiful-luxury-swimming-pool-with-palm-trees-thai-style-decoration_1258-111445.jpg", imageAlt: "Luxury patio design"}, phoneTwo: { - imageSrc: "http://img.b2bpic.net/free-photo/elegant-wedding-venue-with-swimming-pool_637285-5705.jpg?_wi=2", - imageAlt: "Outdoor entertainment area", - }, + imageSrc: "http://img.b2bpic.net/free-photo/elegant-wedding-venue-with-swimming-pool_637285-5705.jpg", imageAlt: "Outdoor entertainment area"}, }, { id: 3, - title: "Water Features & Pools", - description: "Custom fountains, ponds, and luxury pools that create tranquil focal points and enhance your property's value and ambiance. Each installation is engineered for longevity and visual impact.", - phoneOne: { - imageSrc: "http://img.b2bpic.net/free-photo/fountain-park-pedralbes-royal-palace_1398-4394.jpg?_wi=2", - imageAlt: "Water fountain feature", - }, + title: "Water Features & Pools", description: "Custom fountains, ponds, and luxury pools that create tranquil focal points and enhance your property's value and ambiance. Each installation is engineered for longevity and visual impact.", phoneOne: { + imageSrc: "http://img.b2bpic.net/free-photo/fountain-park-pedralbes-royal-palace_1398-4394.jpg", imageAlt: "Water fountain feature"}, phoneTwo: { - imageSrc: "http://img.b2bpic.net/free-photo/luxury-pool-villa-spectacular-contemporary-design-digital-art-real-estate-home-house-property-ge_1258-150757.jpg?_wi=2", - imageAlt: "Luxury pool design", - }, + imageSrc: "http://img.b2bpic.net/free-photo/luxury-pool-villa-spectacular-contemporary-design-digital-art-real-estate-home-house-property-ge_1258-150757.jpg", imageAlt: "Luxury pool design"}, }, ]} showStepNumbers={true} diff --git a/src/app/team/page.tsx b/src/app/team/page.tsx index 30ea815..5a8e01c 100644 --- a/src/app/team/page.tsx +++ b/src/app/team/page.tsx @@ -16,8 +16,7 @@ export default function TeamPage() { const footerColumns = [ { - title: "Services", - items: [ + title: "Services", items: [ { label: "Garden Design", href: "/services" }, { label: "Outdoor Living", href: "/services" }, { label: "Water Features", href: "/services" }, @@ -25,8 +24,7 @@ export default function TeamPage() { ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, { label: "Our Team", href: "/team" }, { label: "Portfolio", href: "/portfolio" }, @@ -34,11 +32,10 @@ export default function TeamPage() { ], }, { - title: "Resources", - items: [ - { label: "FAQ", href: "/contact" }, + title: "Resources", items: [ + { label: "FAQ", href: "#faq" }, { label: "Design Tips", href: "#" }, - { label: "Testimonials", href: "#" }, + { label: "Testimonials", href: "#testimonials" }, { label: "Privacy Policy", href: "#" }, ], }, @@ -62,9 +59,7 @@ export default function TeamPage() { brandName="Prestige Landscapes" navItems={navItems} button={{ - text: "Request Consultation", - href: "/contact", - }} + text: "Request Consultation", href: "/contact"}} /> @@ -78,55 +73,21 @@ export default function TeamPage() { animationType="slide-up" groups={[ { - id: "leadership", - groupTitle: "Executive Team", - members: [ + id: "leadership", groupTitle: "Executive Team", members: [ { - id: "1", - title: "James Richardson", - subtitle: "Founder & Principal Designer", - detail: "james@prestigelandscapes.com", - imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=2", - imageAlt: "James Richardson", - }, + id: "1", title: "James Richardson", subtitle: "Founder & Principal Designer", detail: "james@prestigelandscapes.com", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageAlt: "James Richardson"}, { - id: "2", - title: "Elizabeth Van Der Berg", - subtitle: "Creative Director", - detail: "elizabeth@prestigelandscapes.com", - imageSrc: "http://img.b2bpic.net/free-photo/attractive-blond-business-woman-white-shirt-grey-background_613910-11739.jpg?_wi=2", - imageAlt: "Elizabeth Van Der Berg", - }, + id: "2", title: "Elizabeth Van Der Berg", subtitle: "Creative Director", detail: "elizabeth@prestigelandscapes.com", imageSrc: "http://img.b2bpic.net/free-photo/attractive-blond-business-woman-white-shirt-grey-background_613910-11739.jpg", imageAlt: "Elizabeth Van Der Berg"}, ], }, { - id: "designers", - groupTitle: "Design Team", - members: [ + id: "designers", groupTitle: "Design Team", members: [ { - id: "3", - title: "Marcus Chen", - subtitle: "Senior Landscape Architect", - detail: "marcus@prestigelandscapes.com", - imageSrc: "http://img.b2bpic.net/free-photo/smiling-man-with-blue-shirt-schematics_23-2148269824.jpg?_wi=2", - imageAlt: "Marcus Chen", - }, + id: "3", title: "Marcus Chen", subtitle: "Senior Landscape Architect", detail: "marcus@prestigelandscapes.com", imageSrc: "http://img.b2bpic.net/free-photo/smiling-man-with-blue-shirt-schematics_23-2148269824.jpg", imageAlt: "Marcus Chen"}, { - id: "4", - title: "Sofia Rodriguez", - subtitle: "Garden Designer", - detail: "sofia@prestigelandscapes.com", - imageSrc: "http://img.b2bpic.net/free-photo/smiling-happy-florist-her-nursery-standing-holding-potted-combination-succulents-her-hands-as-she-tends-gardenplants-greenhouse_158595-6976.jpg?_wi=2", - imageAlt: "Sofia Rodriguez", - }, + id: "4", title: "Sofia Rodriguez", subtitle: "Garden Designer", detail: "sofia@prestigelandscapes.com", imageSrc: "http://img.b2bpic.net/free-photo/smiling-happy-florist-her-nursery-standing-holding-potted-combination-succulents-her-hands-as-she-tends-gardenplants-greenhouse_158595-6976.jpg", imageAlt: "Sofia Rodriguez"}, { - id: "5", - title: "Thomas Beaumont", - subtitle: "Hardscape Specialist", - detail: "thomas@prestigelandscapes.com", - imageSrc: "http://img.b2bpic.net/free-photo/vertical-portrait-young-attractive-bearded-dark-skinned-farmer-blue-t-shirt-with-garden-tools-holding-hands-crossed-looking-aside-with-confident-face-expression_176420-19901.jpg?_wi=2", - imageAlt: "Thomas Beaumont", - }, + id: "5", title: "Thomas Beaumont", subtitle: "Hardscape Specialist", detail: "thomas@prestigelandscapes.com", imageSrc: "http://img.b2bpic.net/free-photo/vertical-portrait-young-attractive-bearded-dark-skinned-farmer-blue-t-shirt-with-garden-tools-holding-hands-crossed-looking-aside-with-confident-face-expression_176420-19901.jpg", imageAlt: "Thomas Beaumont"}, ], }, ]}