6 Commits

Author SHA1 Message Date
d5e69b2b7f Update src/app/page.tsx 2026-03-06 14:58:14 +00:00
580e8fab2e Update src/app/layout.tsx 2026-03-06 14:58:13 +00:00
ab31b806d9 Merge version_1 into main
Merge version_1 into main
2026-03-06 14:48:43 +00:00
9ae4a3ec03 Merge version_1 into main
Merge version_1 into main
2026-03-06 14:47:53 +00:00
e202c7ae0c Merge version_1 into main
Merge version_1 into main
2026-03-06 14:46:16 +00:00
12bb1fc5cc Merge version_1 into main
Merge version_1 into main
2026-03-06 14:44:50 +00:00
2 changed files with 14 additions and 62 deletions

View File

@@ -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>
); );
} }

View File

@@ -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>