diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a5c58e4..92d884b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,67 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Montserrat } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const montserrat = Montserrat({ - variable: "--font-montserrat", - subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Premium Fence Installation Jacksonville FL | Fortera Fencing", - description: "Fortera Fencing is Northeast Florida's premium fence builder serving Jacksonville and surrounding counties. Professional installation, American-made materials, financing options, and exceptional customer experience.", - keywords: "fence installation Jacksonville, premium fencing, fence contractor, wood fence, vinyl fence, aluminum fence, residential fencing, commercial fencing, Northeast Florida", - metadataBase: new URL("https://forterafencing.com"), - alternates: { - canonical: "https://forterafencing.com", - }, - openGraph: { - title: "Premium Fence Installation Jacksonville | Fortera Fencing", - description: "Northeast Florida's premium fence builder. Professional installation, American-made materials, exceptional service.", - url: "https://forterafencing.com", - siteName: "Fortera Fencing", - type: "website", - }, - twitter: { - card: "summary_large_image", - title: "Premium Fence Installation Jacksonville | Fortera Fencing", - description: "Northeast Florida's premium fence builder with 20+ years of construction excellence.", - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +