|
|
|
|
@@ -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 (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${archivo.variable} ${halant.variable} ${inter.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body className={inter.className}>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1431,7 +1384,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|