Update src/app/layout.tsx

This commit is contained in:
2026-06-10 00:41:07 +00:00
parent 4f3c293916
commit 718512c30c

View File

@@ -7,12 +7,14 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Raleway } from "next/font/google";
import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
export const metadata: Metadata = {
title: 'VoyageVista | Your Global Vacation Destination Guide',
description: 'Discover breathtaking vacation destinations and expertly curated travel packages. Plan your next unforgettable journey with VoyageVista, your trusted travel partner.',
title: 'Taqueria Chicago | Authentic Mexican Flavors',
description: 'Experience the vibrant spirit of Mexico with every bite at Taqueria Chicago. Fresh ingredients, traditional recipes, and a passion for authentic Mexican cuisine in the heart of Chicago.',
keywords: ["vacation, travel, destination, booking, trip planning, adventure, luxury travel, family vacation, holiday packages"],
openGraph: {
"title": "VoyageVista | Your Global Vacation Destination Guide",
@@ -41,9 +43,12 @@ export const metadata: Metadata = {
},
};
const raleway = Raleway({
variable: "--font-raleway",
subsets: ["latin"],
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
export default function RootLayout({
@@ -54,7 +59,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${raleway.variable} antialiased`}>
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
<Tag />
{children}
<script