Update src/app/layout.tsx

This commit is contained in:
2026-03-10 11:40:22 +00:00
parent 002a8c5db3
commit 59554ddccd

View File

@@ -1,28 +1,57 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Public_Sans } from "next/font/google";
import { Inter } 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 { Public_Sans } from "next/font/google";
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const publicSans = Public_Sans({
variable: "--font-public-sans",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Meulders RENT - Car Rental Service | Best Rates",
description: "Rent your perfect car with Meulders RENT. Browse our fleet, compare prices, and book with flexible insurance options. Simple online booking, 24/7 support.",
keywords: "car rental, vehicle rental, budget cars, SUV rental, luxury cars, car hire, transportation",
robots: {
index: true,
follow: true,
},
openGraph: {
title: "Meulders RENT - Car Rental Service",
description: "Rent your perfect car today. Browse our fleet, compare prices, and book with confidence.",
url: "https://meulders-rent.com",
siteName: "Meulders RENT",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-vector/car-dealer-template-design_23-2150712654.jpg",
alt: "Meulders RENT Car Rental",
},
],
},
twitter: {
card: "summary_large_image",
title: "Meulders RENT - Car Rental",
description: "Rent your perfect car with flexible insurance and add-on options.",
images: ["http://img.b2bpic.net/free-vector/car-dealer-template-design_23-2150712654.jpg"],
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -31,7 +60,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${publicSans.variable} ${inter.variable} antialiased`}>
<body
className={`${halant.variable} ${publicSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -43,4 +74,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}