Update src/app/layout.tsx

This commit is contained in:
2026-03-16 18:52:09 +00:00
parent 9a6edbe602
commit a7144e697e

View File

@@ -1,24 +1,61 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Montserrat } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Montserrat } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const montserrat = Montserrat({
variable: "--font-montserrat",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Apple Valley Honda | Honda Dealership East Wenatchee, WA",
description: "Find your perfect Honda at Apple Valley Honda. New & certified pre-owned vehicles, financing, service. Call (901) 402-6668 or visit 400 Highline Dr, East Wenatchee.",
keywords: "Honda dealership East Wenatchee, Honda Civic, used cars, auto financing, Honda service, Wenatchee WA",
robots: {
index: true,
follow: true,
},
metadataBase: new URL("https://applevalleyhonda.com"),
alternates: {
canonical: "https://applevalleyhonda.com",
},
openGraph: {
title: "Apple Valley Honda | New & Used Honda Vehicles",
description: "Discover new Honda models and certified pre-owned vehicles at Apple Valley Honda in East Wenatchee. Expert service, flexible financing, and 4.7★ customer rating.",
url: "https://applevalleyhonda.com",
siteName: "Apple Valley Honda",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/portrait-salesman-car-dealership_23-2148130126.jpg",
alt: "Apple Valley Honda vehicles",
},
],
},
twitter: {
card: "summary_large_image",
title: "Apple Valley Honda | Your Local Honda Dealer",
description: "Browse new Honda vehicles and certified pre-owned cars in East Wenatchee. Call (901) 402-6668 to schedule a test drive.",
images: ["http://img.b2bpic.net/free-photo/portrait-salesman-car-dealership_23-2148130126.jpg"],
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +64,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${montserrat.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}