diff --git a/src/app/layout.tsx b/src/app/layout.tsx index acad348..3fa9691 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1415 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Raleway } 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 raleway = Raleway({ - variable: "--font-raleway", subsets: ["latin"], +const geist_mono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Miami Personal Injury Lawyer | Free Consultation", description: "Rosenfeld Law Group - Miami personal injury attorney specializing in car accidents, slip & fall, and trucking accidents. Free consultation. No fees unless we win.", keywords: "Miami personal injury lawyer, car accident attorney Miami, slip and fall lawyer, truck accident lawyer Miami, medical malpractice attorney", openGraph: { - title: "Miami Personal Injury Lawyer - Rosenfeld Law Group", description: "Injured in an accident? Get free legal consultation from experienced Miami personal injury attorneys. No fees unless we win.", type: "website", siteName: "Rosenfeld Law Group"}, - twitter: { - card: "summary", title: "Miami Personal Injury Lawyer | Free Consultation", description: "Injured? Call our Miami personal injury attorneys for a free case review. Contingency representation - no fees unless we win."}, - robots: { - index: true, - follow: true, - }, -}; + title: "Rosenfeld Law Group - Miami Personal Injury Lawyer", description: "Expert personal injury representation in Miami. Free consultation. No fees unless we win."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -