Compare commits
18 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b8b627fdc5 | |||
| 14514d7b13 | |||
| 1c93358f69 | |||
| 4c33b833f0 | |||
| e0f32674ce | |||
| c24b4a0453 | |||
| 8fc07557d9 | |||
| aef568c8b7 | |||
| bb20fdf7cf | |||
| dc02b2a5c7 | |||
| b2dbb373f7 | |||
| 618d10ca73 | |||
| 33b06a41b2 | |||
| 680af42bbe | |||
| 4be87a9b50 | |||
| de4308e2ae | |||
| 5dae48c810 | |||
| 21ed522657 |
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user