Merge version_3 into main #1
@@ -7,12 +7,14 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||||
import { Raleway } from "next/font/google";
|
import { Raleway } from "next/font/google";
|
||||||
|
import { Manrope } from "next/font/google";
|
||||||
|
import { DM_Sans } from "next/font/google";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: 'VoyageVista | Your Global Vacation Destination Guide',
|
title: 'Taqueria Chicago | Authentic Mexican Flavors',
|
||||||
description: 'Discover breathtaking vacation destinations and expertly curated travel packages. Plan your next unforgettable journey with VoyageVista, your trusted travel partner.',
|
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"],
|
keywords: ["vacation, travel, destination, booking, trip planning, adventure, luxury travel, family vacation, holiday packages"],
|
||||||
openGraph: {
|
openGraph: {
|
||||||
"title": "VoyageVista | Your Global Vacation Destination Guide",
|
"title": "VoyageVista | Your Global Vacation Destination Guide",
|
||||||
@@ -41,9 +43,12 @@ export const metadata: Metadata = {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
const raleway = Raleway({
|
|
||||||
variable: "--font-raleway",
|
const manrope = Manrope({
|
||||||
subsets: ["latin"],
|
variable: "--font-manrope", subsets: ["latin"],
|
||||||
|
});
|
||||||
|
const dmSans = DM_Sans({
|
||||||
|
variable: "--font-dm-sans", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
@@ -54,7 +59,7 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body className={`${raleway.variable} antialiased`}>
|
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
<script
|
<script
|
||||||
|
|||||||
Reference in New Issue
Block a user