Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d5e69b2b7f | |||
| 580e8fab2e | |||
| ab31b806d9 | |||
| 9ae4a3ec03 | |||
| e202c7ae0c | |||
| 12bb1fc5cc |
@@ -1,69 +1,22 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from 'next';
|
||||||
import { Archivo } from "next/font/google";
|
import { Inter } from 'next/font/google';
|
||||||
import { Halant } from "next/font/google";
|
import '@/styles/globals.css';
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import "./globals.css";
|
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const archivo = Archivo({
|
const inter = Inter({ subsets: ['latin'] });
|
||||||
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"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "David Gearin - Medicare & Life Insurance Advisor | Dear Retirement",
|
title: 'David Gearin - Medicare & Life Insurance Specialist',
|
||||||
description: "Expert Medicare and Life Insurance guidance from David Gearin at Dear Retirement. Personalized plans for seniors 60+. Schedule your free consultation today.",
|
description: 'Expert Medicare and Life Insurance guidance from David Gearin at Dear Retirement. Personalized advice for your retirement planning.',
|
||||||
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"],
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${archivo.variable} ${halant.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1431,7 +1384,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -222,8 +222,8 @@ export default function HomePage() {
|
|||||||
background={{ variant: "animated-grid" }}
|
background={{ variant: "animated-grid" }}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
inputPlaceholder="Enter your email"
|
inputPlaceholder="Enter your email"
|
||||||
buttonText="Schedule Consultation"
|
buttonText="Get Your Free Medicare Review"
|
||||||
termsText="We respect your privacy. Your information is secure and confidential."
|
termsText="No obligation, personalized analysis in under 15 minutes."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -275,4 +275,4 @@ export default function HomePage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user