5 Commits

Author SHA1 Message Date
7e1b417bf6 Update src/app/page.tsx 2026-03-06 05:02:04 +00:00
9e227098b8 Update src/app/layout.tsx 2026-03-06 05:02:04 +00:00
34c131dd64 Merge version_1 into main
Merge version_1 into main
2026-03-06 05:00:04 +00:00
698c8fed1f Merge version_1 into main
Merge version_1 into main
2026-03-06 04:59:15 +00:00
1813d57f9e Merge version_1 into main
Merge version_1 into main
2026-03-06 04:57:55 +00:00
2 changed files with 9 additions and 50 deletions

View File

@@ -1,60 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Roboto } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const roboto = Roboto({
variable: "--font-roboto", subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Fireplace Sales & Service Renton WA | Rob's Country Hearth & Home", description: "Expert fireplace dealer and repair service in Renton, WA. Premium gas, wood, and electric fireplaces, stoves, and inserts. Free estimates. Serving Seattle area since 2005.", keywords: "fireplace store Renton WA, fireplace dealer Renton, fireplace inserts, gas stoves, fireplace repair, wood stoves, Seattle fireplace", alternates: {
canonical: "https://robscountryhearth.com"
},
metadataBase: new URL("https://robscountryhearth.com"),
openGraph: {
title: "Fireplace Sales & Service in Renton, WA | Rob's Country Hearth & Home", description: "Family-owned fireplace experts. Premium fireplaces, stoves, and professional repair service. Free estimates. Serving Seattle area.", url: "https://robscountryhearth.com", siteName: "Rob's Country Hearth & Home", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/elegant-couple-sitting-home-near-fareplace_1157-42974.jpg", alt: "Premium fireplace installation by Rob's Country Hearth & Home"
}
]
},
twitter: {
card: "summary_large_image", title: "Fireplace Sales & Service in Renton, WA", description: "Expert fireplace dealer serving the Seattle area with premium products and professional service since 2005.", images: ["http://img.b2bpic.net/free-photo/elegant-couple-sitting-home-near-fareplace_1157-42974.jpg"]
},
robots: {
index: true,
follow: true
}
};
title: "Rob's Country Hearth & Home | Fireplace Sales & Service in Renton, WA", description: "Family-owned fireplace experts serving Seattle area with premium fireplaces, stoves, inserts, and professional repair services since 2005."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1422,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -232,7 +232,7 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactSplitForm
title="Ready to Add Warmth and Comfort to Your Home?"
description="Contact Rob's Country Hearth & Home today for a free estimate, expert advice, or professional repair service. We're here to help you find the perfect fireplace solution."
description="Fill out the form below or call (425) 204-0484 for immediate assistance. We'll respond within 24 hours with your free estimate and expert recommendations."
inputs={[
{ name: "name", type: "text", placeholder: "Your Name", required: true },
{ name: "phone", type: "tel", placeholder: "Phone Number", required: true },
@@ -286,4 +286,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}