Merge version_2 into main #5

Merged
bender merged 2 commits from version_2 into main 2026-03-06 14:58:18 +00:00
2 changed files with 14 additions and 62 deletions

View File

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

View File

@@ -222,8 +222,8 @@ export default function HomePage() {
background={{ variant: "animated-grid" }}
useInvertedBackground={false}
inputPlaceholder="Enter your email"
buttonText="Schedule Consultation"
termsText="We respect your privacy. Your information is secure and confidential."
buttonText="Get Your Free Medicare Review"
termsText="No obligation, personalized analysis in under 15 minutes."
/>
</div>
@@ -275,4 +275,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}