4 Commits

Author SHA1 Message Date
0a24b9d8ce Update src/app/services/page.tsx 2026-03-04 16:48:09 +00:00
191f910f9b Update src/app/page.tsx 2026-03-04 16:48:08 +00:00
a3aa95017b Update src/app/contact/page.tsx 2026-03-04 16:48:08 +00:00
31e93272c0 Update src/app/about/page.tsx 2026-03-04 16:48:08 +00:00

View File

@@ -1,20 +1,58 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "@/styles/globals.css";
import { Manrope } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const inter = Inter({ 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 manrope = Manrope({
variable: "--font-manrope",
subsets: ["latin"],
});
export const metadata: Metadata = {
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."};
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.",
},
};
export default function RootLayout({
children,
}: {
}: Readonly<{
children: React.ReactNode;
}) {
}>) {
return (
<html lang="en">
<body className={inter.className}>{children}
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1382,6 +1420,7 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}