5 Commits

Author SHA1 Message Date
40b40f18f7 Update src/app/page.tsx 2026-03-04 21:16:49 +00:00
195895a7a2 Update src/app/layout.tsx 2026-03-04 21:16:49 +00:00
16321228e0 Merge version_1 into main
Merge version_1 into main
2026-03-04 21:15:55 +00:00
1a3c5db474 Merge version_1 into main
Merge version_1 into main
2026-03-04 21:15:11 +00:00
8723461f48 Merge version_1 into main
Merge version_1 into main
2026-03-04 21:13:48 +00:00
2 changed files with 48 additions and 66 deletions

View File

@@ -1,57 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google"; import { Outfit } from "next/font/google";
import { Inter } from "next/font/google";
import { Open_Sans } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const outfit = Outfit({ subsets: ["latin"] });
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans", subsets: ["latin"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Hannah's Haven LLC | Premium Residential Cleaning Services", description: "Elevated home care and meticulous residential cleaning for homeowners who expect exceptional standards. Fully insured, locally owned, and satisfaction guaranteed.", keywords: "premium cleaning service, residential cleaning, luxury home care, local cleaning company, professional cleaners", metadataBase: new URL("https://hannahshaven.com"), title: "Hannah's Haven LLC - Premium Residential Cleaning", description: "Elevated home care with exceptional standards. Meticulous, reliable residential cleaning for homeowners who expect more."};
alternates: {
canonical: "https://hannahshaven.com"},
openGraph: {
title: "Hannah's Haven LLC | Premium Residential Cleaning", description: "Experience elevated home care with meticulous cleaning and exceptional service standards.", url: "https://hannahshaven.com", siteName: "Hannah's Haven LLC", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/center-cooktop-blue-modules-stone-backdrop_169016-69293.jpg", alt: "Luxury kitchen interior"},
],
},
twitter: {
card: "summary_large_image", title: "Hannah's Haven LLC | Premium Cleaning Services", description: "Elevated home care designed for homeowners who expect more.", images: ["http://img.b2bpic.net/free-photo/center-cooktop-blue-modules-stone-backdrop_169016-69293.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={outfit.className}>{children}
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1419,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -43,7 +43,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroBillboardTestimonial <HeroBillboardTestimonial
title="Elevated Home Care. Exceptional Standards." title="Elevated Home Care. Exceptional Standards."
description="Hannah's Haven LLC delivers meticulous, reliable residential cleaning for homeowners who expect more. Premium service. Zero compromises." description="Your home cleaned to perfection—so you never worry about standards again. Hannah's Haven LLC delivers meticulous, reliable residential cleaning with premium service and zero compromises."
tag="Premium Residential Cleaning" tag="Premium Residential Cleaning"
tagIcon={Sparkles} tagIcon={Sparkles}
tagAnimation="slide-up" tagAnimation="slide-up"
@@ -59,13 +59,16 @@ export default function LandingPage() {
testimonials={[ testimonials={[
{ {
name: "Sarah Mitchell", handle: "Homeowner, Westside", testimonial: "Hannah's Haven is in a league of its own. The attention to detail and professionalism exceeded anything we've experienced before. Worth every dollar.", rating: 5, name: "Sarah Mitchell", handle: "Homeowner, Westside", testimonial: "Hannah's Haven is in a league of its own. The attention to detail and professionalism exceeded anything we've experienced before. Worth every dollar.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/successful-businesswoman-ready-challenges_1163-4336.jpg?_wi=1", imageAlt: "professional portrait woman headshot business"}, imageSrc: "http://img.b2bpic.net/free-photo/successful-businesswoman-ready-challenges_1163-4336.jpg?_wi=1", imageAlt: "professional portrait woman headshot business"
},
{ {
name: "James Rodriguez", handle: "Business Executive, Downtown", testimonial: "We've tried many cleaning services. Hannah's Haven set a new standard for reliability, trust, and exceptional results.", rating: 5, name: "James Rodriguez", handle: "Business Executive, Downtown", testimonial: "We've tried many cleaning services. Hannah's Haven set a new standard for reliability, trust, and exceptional results.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=1", imageAlt: "professional portrait man headshot executive"}, imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=1", imageAlt: "professional portrait man headshot executive"
},
{ {
name: "Emily Patterson", handle: "Professional, Financial District", testimonial: "The precision and care they bring to every visit is remarkable. Our home feels genuinely cared for, not just cleaned.", rating: 5, name: "Emily Patterson", handle: "Professional, Financial District", testimonial: "The precision and care they bring to every visit is remarkable. Our home feels genuinely cared for, not just cleaned.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/confident-beautiful-young-businesswoman-looking-camera-head-shot-portrait_1163-4928.jpg?_wi=1", imageAlt: "professional portrait woman headshot manager"}, imageSrc: "http://img.b2bpic.net/free-photo/confident-beautiful-young-businesswoman-looking-camera-head-shot-portrait_1163-4928.jpg?_wi=1", imageAlt: "professional portrait woman headshot manager"
},
]} ]}
testimonialRotationInterval={5000} testimonialRotationInterval={5000}
useInvertedBackground={false} useInvertedBackground={false}
@@ -98,16 +101,20 @@ export default function LandingPage() {
features={[ features={[
{ {
icon: Home, icon: Home,
title: "Luxury Maintenance Cleaning", description: "Routine upkeep designed to keep your home in pristine condition. Regular visits, consistent excellence."}, title: "Luxury Maintenance Cleaning", description: "Routine upkeep designed to keep your home in pristine condition. Regular visits, consistent excellence."
},
{ {
icon: Sparkles, icon: Sparkles,
title: "Deep Detail Reset", description: "Top-to-bottom deep cleaning for seasonal refresh or first-time service. Comprehensive and thorough."}, title: "Deep Detail Reset", description: "Top-to-bottom deep cleaning for seasonal refresh or first-time service. Comprehensive and thorough."
},
{ {
icon: Key, icon: Key,
title: "Move-In / Move-Out Perfection", description: "Immaculate preparation for transitions. Every detail addressed. Ready for your next chapter."}, title: "Move-In / Move-Out Perfection", description: "Immaculate preparation for transitions. Every detail addressed. Ready for your next chapter."
},
{ {
icon: CheckCircle, icon: CheckCircle,
title: "Selective Specialty Requests", description: "Interior windows, garages, light yard touch-ups, and custom add-ons. We handle what matters most."}, title: "Selective Specialty Requests", description: "Interior windows, garages, light yard touch-ups, and custom add-ons. We handle what matters most."
},
]} ]}
animationType="slide-up" animationType="slide-up"
textboxLayout="default" textboxLayout="default"
@@ -137,13 +144,17 @@ export default function LandingPage() {
description="Real reviews from real clients who expect and receive nothing but excellence." description="Real reviews from real clients who expect and receive nothing but excellence."
testimonials={[ testimonials={[
{ {
id: "1", name: "Sarah Mitchell", role: "Business Owner", testimonial: "Hannah's Haven is in a league of its own. The attention to detail and professionalism exceeded anything we've experienced before. Worth every dollar.", imageSrc: "http://img.b2bpic.net/free-photo/successful-businesswoman-ready-challenges_1163-4336.jpg?_wi=2", imageAlt: "Portrait of Sarah Mitchell"}, id: "1", name: "Sarah Mitchell", role: "Business Owner", testimonial: "Hannah's Haven is in a league of its own. The attention to detail and professionalism exceeded anything we've experienced before. Worth every dollar.", imageSrc: "http://img.b2bpic.net/free-photo/successful-businesswoman-ready-challenges_1163-4336.jpg?_wi=2", imageAlt: "Portrait of Sarah Mitchell"
},
{ {
id: "2", name: "James Rodriguez", role: "Financial Executive", testimonial: "We've tried many cleaning services over the years. Hannah's Haven set a new standard for reliability, trust, and exceptional results. They're the gold standard.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=2", imageAlt: "Portrait of James Rodriguez"}, id: "2", name: "James Rodriguez", role: "Financial Executive", testimonial: "We've tried many cleaning services over the years. Hannah's Haven set a new standard for reliability, trust, and exceptional results. They're the gold standard.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=2", imageAlt: "Portrait of James Rodriguez"
},
{ {
id: "3", name: "Emily Patterson", role: "Healthcare Professional", testimonial: "The precision and care they bring to every visit is remarkable. Our home feels genuinely cared for, not just cleaned. Highly recommend.", imageSrc: "http://img.b2bpic.net/free-photo/confident-beautiful-young-businesswoman-looking-camera-head-shot-portrait_1163-4928.jpg?_wi=2", imageAlt: "Portrait of Emily Patterson"}, id: "3", name: "Emily Patterson", role: "Healthcare Professional", testimonial: "The precision and care they bring to every visit is remarkable. Our home feels genuinely cared for, not just cleaned. Highly recommend.", imageSrc: "http://img.b2bpic.net/free-photo/confident-beautiful-young-businesswoman-looking-camera-head-shot-portrait_1163-4928.jpg?_wi=2", imageAlt: "Portrait of Emily Patterson"
},
{ {
id: "4", name: "Michael Chen", role: "Software Engineer", testimonial: "Professional, reliable, and trustworthy. Hannah's Haven delivers exceptional service every single time. This is what premium cleaning looks like.", imageSrc: "http://img.b2bpic.net/free-photo/confident-entrepreneur-satisfied-with-own-success_1163-5474.jpg", imageAlt: "Portrait of Michael Chen"}, id: "4", name: "Michael Chen", role: "Software Engineer", testimonial: "Professional, reliable, and trustworthy. Hannah's Haven delivers exceptional service every single time. This is what premium cleaning looks like.", imageSrc: "http://img.b2bpic.net/free-photo/confident-entrepreneur-satisfied-with-own-success_1163-5474.jpg", imageAlt: "Portrait of Michael Chen"
},
]} ]}
animationType="slide-up" animationType="slide-up"
textboxLayout="default" textboxLayout="default"
@@ -174,17 +185,23 @@ export default function LandingPage() {
description="Everything you need to know about Hannah's Haven and our service approach." description="Everything you need to know about Hannah's Haven and our service approach."
faqs={[ faqs={[
{ {
id: "1", title: "How do I book a consultation?", content: "Contact us via phone or our online booking system to schedule a free consultation. We'll discuss your home's specific needs and provide a custom quote with no obligation."}, id: "1", title: "How do I book a consultation?", content: "Contact us via phone or our online booking system to schedule a free consultation. We'll discuss your home's specific needs and provide a custom quote with no obligation."
},
{ {
id: "2", title: "What areas do you service?", content: "Hannah's Haven proudly serves the greater metro area and surrounding premium neighborhoods. Contact us to confirm your location and discuss service availability."}, id: "2", title: "What areas do you service?", content: "Hannah's Haven proudly serves the greater metro area and surrounding premium neighborhoods. Contact us to confirm your location and discuss service availability."
},
{ {
id: "3", title: "How often should I schedule cleaning?", content: "Maintenance clients typically schedule bi-weekly or monthly service. We customize frequency based on your home's size, condition, and lifestyle. We'll recommend the optimal schedule during consultation."}, id: "3", title: "How often should I schedule cleaning?", content: "Maintenance clients typically schedule bi-weekly or monthly service. We customize frequency based on your home's size, condition, and lifestyle. We'll recommend the optimal schedule during consultation."
},
{ {
id: "4", title: "What if I'm not satisfied?", content: "Your satisfaction is guaranteed. If anything doesn't meet our standards, we'll return and re-clean at no additional cost. We take pride in our work and your happiness is our priority."}, id: "4", title: "What if I'm not satisfied?", content: "Your satisfaction is guaranteed. If anything doesn't meet our standards, we'll return and re-clean at no additional cost. We take pride in our work and your happiness is our priority."
},
{ {
id: "5", title: "Are your team members background-checked?", content: "Yes. All Hannah's Haven team members are fully background-checked and thoroughly vetted. Your trust and security are paramount to us."}, id: "5", title: "Are your team members background-checked?", content: "Yes. All Hannah's Haven team members are fully background-checked and thoroughly vetted. Your trust and security are paramount to us."
},
{ {
id: "6", title: "Do you use eco-friendly products?", content: "We use premium-grade cleaning products that are effective and safe for your family and pets. We can discuss specific product preferences during your consultation."}, id: "6", title: "Do you use eco-friendly products?", content: "We use premium-grade cleaning products that are effective and safe for your family and pets. We can discuss specific product preferences during your consultation."
},
]} ]}
textboxLayout="default" textboxLayout="default"
useInvertedBackground={true} useInvertedBackground={true}
@@ -202,11 +219,14 @@ export default function LandingPage() {
animationType="slide-up" animationType="slide-up"
faqs={[ faqs={[
{ {
id: "1", title: "What's your service guarantee?", content: "100% satisfaction guaranteed. If anything doesn't meet our premium standards, we'll address it immediately at no additional cost."}, id: "1", title: "What's your service guarantee?", content: "100% satisfaction guaranteed. If anything doesn't meet our premium standards, we'll address it immediately at no additional cost."
},
{ {
id: "2", title: "How are pricing and quotes handled?", content: "Every home is unique. We provide transparent, custom quotes based on size, condition, and service depth. Maintenance clients receive priority scheduling and preferred rates."}, id: "2", title: "How are pricing and quotes handled?", content: "Every home is unique. We provide transparent, custom quotes based on size, condition, and service depth. Maintenance clients receive priority scheduling and preferred rates."
},
{ {
id: "3", title: "Do you offer any discounts?", content: "We're honored to offer a 10% courtesy discount for military personnel and first responders as a thank you for your service."}, id: "3", title: "Do you offer any discounts?", content: "We're honored to offer a 10% courtesy discount for military personnel and first responders as a thank you for your service."
},
]} ]}
/> />
</div> </div>