18 Commits

Author SHA1 Message Date
b8b627fdc5 Update src/app/services/page.tsx 2026-03-04 16:49:45 +00:00
14514d7b13 Update src/app/page.tsx 2026-03-04 16:49:44 +00:00
1c93358f69 Update src/app/contact/page.tsx 2026-03-04 16:49:44 +00:00
4c33b833f0 Update src/app/about/page.tsx 2026-03-04 16:49:43 +00:00
e0f32674ce Merge version_2 into main
Merge version_2 into main
2026-03-04 16:47:22 +00:00
c24b4a0453 Update src/app/services/page.tsx 2026-03-04 16:47:17 +00:00
8fc07557d9 Update src/app/page.tsx 2026-03-04 16:47:17 +00:00
aef568c8b7 Update src/app/contact/page.tsx 2026-03-04 16:47:16 +00:00
bb20fdf7cf Update src/app/about/page.tsx 2026-03-04 16:47:14 +00:00
dc02b2a5c7 Merge version_2 into main
Merge version_2 into main
2026-03-04 16:44:17 +00:00
b2dbb373f7 Update src/app/page.tsx 2026-03-04 16:44:13 +00:00
618d10ca73 Update src/app/layout.tsx 2026-03-04 16:44:12 +00:00
33b06a41b2 Merge version_1 into main
Merge version_1 into main
2026-03-04 16:42:41 +00:00
680af42bbe Merge version_1 into main
Merge version_1 into main
2026-03-04 16:40:44 +00:00
4be87a9b50 Merge version_1 into main
Merge version_1 into main
2026-03-04 16:38:50 +00:00
de4308e2ae Merge version_1 into main
Merge version_1 into main
2026-03-04 16:36:58 +00:00
5dae48c810 Merge version_1 into main
Merge version_1 into main
2026-03-04 16:34:52 +00:00
21ed522657 Merge version_1 into main
Merge version_1 into main
2026-03-04 16:33:04 +00:00

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