Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #11.
This commit is contained in:
2026-02-25 01:40:25 +00:00
3 changed files with 16 additions and 11 deletions

View File

@@ -1,4 +1,4 @@
"use client"; "use client"
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
@@ -29,7 +29,7 @@ export default function LandingPage() {
<NavbarStyleApple <NavbarStyleApple
brandName="RBM's Attic Solutions" brandName="RBM's Attic Solutions"
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "#" },
{ name: "Services", id: "services" }, { name: "Services", id: "services" },
{ name: "Reviews", id: "testimonials" }, { name: "Reviews", id: "testimonials" },
{ name: "FAQ", id: "faq" }, { name: "FAQ", id: "faq" },
@@ -53,7 +53,7 @@ export default function LandingPage() {
{ text: "Request Free Estimate", href: "#contact" }, { text: "Request Free Estimate", href: "#contact" },
{ text: "Call Now", href: "tel:+1-802-000-0000" } { text: "Call Now", href: "tel:+1-802-000-0000" }
]} ]}
buttonAnimation="none" buttonAnimation="smooth"
/> />
</div> </div>
@@ -125,7 +125,7 @@ export default function LandingPage() {
description="We believe transparency builds trust. Here's how we work with you from start to finish." description="We believe transparency builds trust. Here's how we work with you from start to finish."
tag="Our Approach" tag="Our Approach"
tagIcon={TrendingUp} tagIcon={TrendingUp}
tagAnimation="smooth" tagAnimation="slide-up"
metrics={[ metrics={[
{ id: "1", value: "01", description: "Inspect" }, { id: "1", value: "01", description: "Inspect" },
{ id: "2", value: "02", description: "Explain" }, { id: "2", value: "02", description: "Explain" },
@@ -148,22 +148,22 @@ export default function LandingPage() {
tagAnimation="slide-up" tagAnimation="slide-up"
testimonials={[ testimonials={[
{ {
id: "1", name: "Mareah Morre", handle: "Essex Junction Homeowner", testimonial: "The service was outstanding. Henry was punctual, inspected every attic area, explained the issues clearly, and repairs were completed efficiently. I noticed immediate improvement in air quality and insulation.", imageSrc: "https://img.b2bpic.net/free-photo/successful-businesswoman-ready-challenges_1163-4336.jpg?_wi=1", imageAlt: "Mareah Morre" id: "1", name: "Mareah Morre", handle: "Essex Junction Homeowner", testimonial: "The service was outstanding. Henry was punctual, inspected every attic area, explained the issues clearly, and repairs were completed efficiently. I noticed immediate improvement in air quality and insulation.", imageSrc: "https://img.b2bpic.net/free-photo/successful-businesswoman-ready-challenges_1163-4336.jpg", imageAlt: "Mareah Morre"
}, },
{ {
id: "2", name: "Robert Sullivan", handle: "Verified Customer", testimonial: "Professional and thorough. They didn't oversell services—just gave honest recommendations based on what my home actually needed. Great communication throughout.", imageSrc: "https://img.b2bpic.net/free-photo/successful-businesswoman-ready-challenges_1163-4336.jpg?_wi=2", imageAlt: "Customer testimonial" id: "2", name: "Robert Sullivan", handle: "Verified Customer", testimonial: "Professional and thorough. They didn't oversell services—just gave honest recommendations based on what my home actually needed. Great communication throughout.", imageSrc: "https://img.b2bpic.net/free-photo/successful-businesswoman-ready-challenges_1163-4336.jpg", imageAlt: "Customer testimonial"
}, },
{ {
id: "3", name: "Jennifer Walsh", handle: "Home Improvement Trust", testimonial: "Finally found a contractor I trust. They took time to explain everything, worked efficiently, and the quality speaks for itself. Highly recommended for Essex Junction.", imageSrc: "https://img.b2bpic.net/free-photo/successful-businesswoman-ready-challenges_1163-4336.jpg?_wi=3", imageAlt: "Customer testimonial" id: "3", name: "Jennifer Walsh", handle: "Home Improvement Trust", testimonial: "Finally found a contractor I trust. They took time to explain everything, worked efficiently, and the quality speaks for itself. Highly recommended for Essex Junction.", imageSrc: "https://img.b2bpic.net/free-photo/successful-businesswoman-ready-challenges_1163-4336.jpg", imageAlt: "Customer testimonial"
}, },
{ {
id: "4", name: "Michael Chen", handle: "Energy Conscious Homeowner", testimonial: "Excellent service and real results. My energy bills are noticeably lower and the house is more comfortable. Worth every penny.", imageSrc: "https://img.b2bpic.net/free-photo/successful-businesswoman-ready-challenges_1163-4336.jpg?_wi=4", imageAlt: "Customer testimonial" id: "4", name: "Michael Chen", handle: "Energy Conscious Homeowner", testimonial: "Excellent service and real results. My energy bills are noticeably lower and the house is more comfortable. Worth every penny.", imageSrc: "https://img.b2bpic.net/free-photo/successful-businesswoman-ready-challenges_1163-4336.jpg", imageAlt: "Customer testimonial"
}, },
{ {
id: "5", name: "Sarah Johnson", handle: "Verified Customer", testimonial: "Quick, professional, and honest. No pressure tactics—just solid advice and excellent workmanship. Exactly what you want from a contractor.", imageSrc: "https://img.b2bpic.net/free-photo/successful-businesswoman-ready-challenges_1163-4336.jpg?_wi=5", imageAlt: "Customer testimonial" id: "5", name: "Sarah Johnson", handle: "Verified Customer", testimonial: "Quick, professional, and honest. No pressure tactics—just solid advice and excellent workmanship. Exactly what you want from a contractor.", imageSrc: "https://img.b2bpic.net/free-photo/successful-businesswoman-ready-challenges_1163-4336.jpg", imageAlt: "Customer testimonial"
}, },
{ {
id: "6", name: "David Kingsford", handle: "Property Owner", testimonial: "Outstanding attention to detail. They treated my home with respect and delivered results that exceed expectations. Will definitely use again.", imageSrc: "https://img.b2bpic.net/free-photo/successful-businesswoman-ready-challenges_1163-4336.jpg?_wi=6", imageAlt: "Customer testimonial" id: "6", name: "David Kingsford", handle: "Property Owner", testimonial: "Outstanding attention to detail. They treated my home with respect and delivered results that exceed expectations. Will definitely use again.", imageSrc: "https://img.b2bpic.net/free-photo/successful-businesswoman-ready-challenges_1163-4336.jpg", imageAlt: "Customer testimonial"
} }
]} ]}
textboxLayout="default" textboxLayout="default"
@@ -202,7 +202,7 @@ export default function LandingPage() {
} }
]} ]}
textboxLayout="default" textboxLayout="default"
animationType="smooth" animationType="slide-up"
useInvertedBackground={false} useInvertedBackground={false}
faqsAnimation="slide-up" faqsAnimation="slide-up"
/> />

View File

@@ -100,6 +100,7 @@ function ProductPageContent({ params }: ProductPageProps) {
{ name: "Contact", id: "contact" }, { name: "Contact", id: "contact" },
{ name: "Shop", id: "/shop" } { name: "Shop", id: "/shop" }
]} ]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/> />
</div> </div>
<main className="min-h-screen flex items-center justify-center pt-20"> <main className="min-h-screen flex items-center justify-center pt-20">
@@ -167,6 +168,7 @@ function ProductPageContent({ params }: ProductPageProps) {
{ name: "Contact", id: "contact" }, { name: "Contact", id: "contact" },
{ name: "Shop", id: "/shop" } { name: "Shop", id: "/shop" }
]} ]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/> />
</div> </div>
<main className="min-h-screen flex items-center justify-center pt-20"> <main className="min-h-screen flex items-center justify-center pt-20">
@@ -241,6 +243,7 @@ function ProductPageContent({ params }: ProductPageProps) {
{ name: "Contact", id: "contact" }, { name: "Contact", id: "contact" },
{ name: "Shop", id: "/shop" } { name: "Shop", id: "/shop" }
]} ]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/> />
</div> </div>
<div id="productDetailCard" data-section="productDetailCard"> <div id="productDetailCard" data-section="productDetailCard">

View File

@@ -43,6 +43,7 @@ function ShopPageContent() {
{ name: "Contact", id: "contact" }, { name: "Contact", id: "contact" },
{ name: "Shop", id: "/shop" } { name: "Shop", id: "/shop" }
]} ]}
button={{ text: "Cart", onClick: () => console.log("cart") }}
/> />
</div> </div>
<main className="min-h-screen flex items-center justify-center pt-20"> <main className="min-h-screen flex items-center justify-center pt-20">
@@ -109,6 +110,7 @@ function ShopPageContent() {
{ name: "Contact", id: "contact" }, { name: "Contact", id: "contact" },
{ name: "Shop", id: "/shop" } { name: "Shop", id: "/shop" }
]} ]}
button={{ text: "Cart", onClick: () => console.log("cart") }}
/> />
</div> </div>
<div id="productCatalog" data-section="productCatalog"> <div id="productCatalog" data-section="productCatalog">