Merge version_2 into main #7

Merged
bender merged 2 commits from version_2 into main 2026-03-04 16:44:17 +00:00
2 changed files with 13 additions and 52 deletions

View File

@@ -1,58 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Manrope } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "@/styles/globals.css";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const manrope = Manrope({
variable: "--font-manrope",
subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Free Legal Services for Veterans | Consumer Rights & Healthcare Advocacy",
description: "Get free legal help for veterans facing consumer law issues, healthcare access barriers, financial abuse, and military benefits. Experienced advocates ready to fight for your rights.",
keywords: "veterans legal services, consumer rights, healthcare advocacy, financial abuse prevention, military benefits, legal aid",
openGraph: {
title: "Veterans Legal Aid - Free Legal Services",
description: "Comprehensive legal support for veterans. Consumer protection, healthcare advocacy, financial abuse prevention, and military benefits assistance.",
type: "website",
siteName: "Veterans Legal Aid",
},
twitter: {
card: "summary_large_image",
title: "Free Legal Services for Veterans",
description: "Get expert legal advocacy for consumer rights, healthcare access, and financial protection.",
},
};
title: "Veterans Legal Aid - Free Legal Services for Veterans", description: "Comprehensive legal support for veterans facing consumer law issues, healthcare access barriers, financial abuse, and military-related legal matters."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1420,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -125,10 +125,10 @@ export default function HomePage() {
textboxLayout="default"
useInvertedBackground={false}
metrics={[
{ id: "1", value: "$50M+", description: "In Benefits Recovered" },
{ id: "2", value: "8,500+", description: "Consumer Cases Won" },
{ id: "3", value: "6,200+", description: "Healthcare Issues Resolved" },
{ id: "4", value: "3,100+", description: "Financial Abuse Cases Stopped" },
{ id: "1", value: "10,000+", description: "Veterans Served" },
{ id: "2", value: "$50M+", description: "In Benefits Recovered" },
{ id: "3", value: "8,500+", description: "Consumer Cases Won" },
{ id: "4", value: "6,200+", description: "Healthcare Issues Resolved" },
]}
/>
</div>
@@ -182,4 +182,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}