diff --git a/src/app/layout.tsx b/src/app/layout.tsx index afb1231..b9172a3 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,69 +1,22 @@ -import type { Metadata } from "next"; -import { Archivo } from "next/font/google"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import type { Metadata } from 'next'; +import { Inter } from 'next/font/google'; +import '@/styles/globals.css'; -const archivo = Archivo({ - variable: "--font-archivo", - subsets: ["latin"], -}); - -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ['latin'] }); export const metadata: Metadata = { - title: "David Gearin - Medicare & Life Insurance Advisor | Dear Retirement", - description: "Expert Medicare and Life Insurance guidance from David Gearin at Dear Retirement. Personalized plans for seniors 60+. Schedule your free consultation today.", - keywords: "Medicare advisor, Medicare Advantage plans, Medicare supplement, Medigap specialist, Prescription drug plans, Life insurance specialist, Medicare help, Dear Retirement insurance advisor", - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "David Gearin - Medicare & Life Insurance Specialist", - description: "Personalized Medicare and Life Insurance guidance focused on your needs. Expert advice from Dear Retirement.", - type: "website", - siteName: "David Gearin | Dear Retirement", - images: [ - { - url: "http://img.b2bpic.net/free-photo/happy-healthcare-worker-mature-couple-greeting-his-office-men-are-shaking-hands_637285-1495.jpg", - alt: "Medicare and retirement insurance planning", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "David Gearin - Medicare & Life Insurance Advisor", - description: "Expert Medicare and Life Insurance guidance for seniors 60+", - images: ["http://img.b2bpic.net/free-photo/happy-healthcare-worker-mature-couple-greeting-his-office-men-are-shaking-hands_637285-1495.jpg"], - }, + title: 'David Gearin - Medicare & Life Insurance Specialist', + description: 'Expert Medicare and Life Insurance guidance from David Gearin at Dear Retirement. Personalized advice for your retirement planning.', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}