diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 544366f..62f2ec7 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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 (
-
-