From 09f89563a0c2e24d8f7ae4d2f80ce1124f9a570e Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 02:56:50 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1438 +------------------------------------------- 1 file changed, 8 insertions(+), 1430 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7f7bd43..11632d0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1442 +1,21 @@ + import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Manrope } from "next/font/google"; -import { DM_Sans } 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 manrope = Manrope({ - variable: "--font-manrope", - subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Frontier Landscaping | Local Landscaping Services Vancouver WA", - description: "Professional landscape design, retaining walls, tree services, and hardscaping in Vancouver, Washington. 20+ years experience, 4.6★ rating, women-owned business.", - keywords: "landscaping vancouver wa, retaining walls, tree pruning, hardscape, landscape design vancouver washington", - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Frontier Landscaping | Transform Your Outdoor Space", - description: "Expert landscaping and tree services serving Southwest Washington. Free estimates available.", - siteName: "Frontier Landscaping", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-psd/luxury-beach-house-generative-ai_587448-2207.jpg", - alt: "Professional landscape design", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Frontier Landscaping | Local Landscape Design Services", - description: "Professional landscaping in Vancouver WA. Retaining walls, tree care, hardscaping.", - images: ["http://img.b2bpic.net/free-psd/luxury-beach-house-generative-ai_587448-2207.jpg"], - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -