Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7e1b417bf6 | |||
| 9e227098b8 | |||
| 34c131dd64 | |||
| 698c8fed1f | |||
| 1813d57f9e |
@@ -1,60 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Roboto } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
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"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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: {
|
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."};
|
||||||
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
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
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={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1422,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -232,7 +232,7 @@ export default function LandingPage() {
|
|||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactSplitForm
|
<ContactSplitForm
|
||||||
title="Ready to Add Warmth and Comfort to Your Home?"
|
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={[
|
inputs={[
|
||||||
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
||||||
{ name: "phone", type: "tel", placeholder: "Phone Number", required: true },
|
{ name: "phone", type: "tel", placeholder: "Phone Number", required: true },
|
||||||
|
|||||||
Reference in New Issue
Block a user