Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 02b50b1301 | |||
| 455fd3a4f8 | |||
| 9c46c5b5a1 |
@@ -1,11 +1,11 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Outfit } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
|
|
||||||
const outfit = Outfit({ subsets: ["latin"] });
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Hannah's Haven LLC - Premium Residential Cleaning", description: "Elevated home care with exceptional standards. Meticulous, reliable residential cleaning for homeowners who expect more."};
|
title: "Hannah's Haven LLC - Premium Residential Cleaning", description: "Elevated home care with exceptional standards. Premium residential cleaning service you can trust."};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
@@ -14,7 +14,7 @@ export default function RootLayout({
|
|||||||
}) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<body className={outfit.className}>{children}
|
<body className={inter.className}>{children}
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
|
|||||||
@@ -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="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."
|
description="Hannah's Haven LLC delivers meticulous, reliable residential cleaning for homeowners who expect more. Premium service. Zero compromises."
|
||||||
tag="Premium Residential Cleaning"
|
tag="Premium Residential Cleaning"
|
||||||
tagIcon={Sparkles}
|
tagIcon={Sparkles}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
@@ -213,7 +213,7 @@ export default function LandingPage() {
|
|||||||
<ContactFaq
|
<ContactFaq
|
||||||
ctaTitle="Experience The Difference."
|
ctaTitle="Experience The Difference."
|
||||||
ctaDescription="Your home deserves elevated care. Let's get started with a consultation tailored to your needs."
|
ctaDescription="Your home deserves elevated care. Let's get started with a consultation tailored to your needs."
|
||||||
ctaButton={{ text: "Book Your Service Today", href: "tel:+1-555-0123" }}
|
ctaButton={{ text: "Schedule Your Free In-Home Consultation", href: "tel:+1-555-0123" }}
|
||||||
ctaIcon={Calendar}
|
ctaIcon={Calendar}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
|
|||||||
Reference in New Issue
Block a user