Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b23e625529 |
@@ -6,18 +6,48 @@ import "@/lib/gsap-setup";
|
|||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
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 { Poppins } from "next/font/google";
|
import { Libre_Baskerville } from "next/font/google";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Webild components 2",
|
title: 'Tasteful Bites | Authentic Local Cuisine & Dining',
|
||||||
description: "Generated by create next app",
|
description: 'Experience the best local dishes at Tasteful Bites. Fresh ingredients, delightful flavors, and a cozy atmosphere for memorable dining. Book your table today!',
|
||||||
|
openGraph: {
|
||||||
|
"title": "Tasteful Bites | Authentic Local Cuisine & Dining",
|
||||||
|
"description": "Experience the best local dishes at Tasteful Bites. Fresh ingredients, delightful flavors, and a cozy atmosphere for memorable dining. Book your table today!",
|
||||||
|
"url": "https://www.tastefulbites.com",
|
||||||
|
"siteName": "Tasteful Bites",
|
||||||
|
"images": [
|
||||||
|
{
|
||||||
|
"url": "http://img.b2bpic.net/free-photo/fried-meat-with-vegetablesin-plate_140725-759.jpg",
|
||||||
|
"alt": "Delicious pasta dish on a restaurant table"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"type": "website"
|
||||||
|
},
|
||||||
|
twitter: {
|
||||||
|
"card": "summary_large_image",
|
||||||
|
"title": "Tasteful Bites | Authentic Local Cuisine & Dining",
|
||||||
|
"description": "Experience the best local dishes at Tasteful Bites. Fresh ingredients, delightful flavors, and a cozy atmosphere for memorable dining. Book your table today!",
|
||||||
|
"images": [
|
||||||
|
"http://img.b2bpic.net/free-photo/fried-meat-with-vegetablesin-plate_140725-759.jpg"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
robots: {
|
||||||
|
"index": true,
|
||||||
|
"follow": true
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
const poppins = Poppins({
|
const libreBaskerville = Libre_Baskerville({
|
||||||
variable: "--font-poppins", subsets: ["latin"],
|
variable: "--font-libre-baskerville",
|
||||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
subsets: ["latin"],
|
||||||
|
weight: ["400", "700"],
|
||||||
|
});
|
||||||
|
const inter = Inter({
|
||||||
|
variable: "--font-inter",
|
||||||
|
subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
@@ -28,7 +58,7 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body className={`${poppins.variable} antialiased`}>
|
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
<script
|
<script
|
||||||
|
|||||||
Reference in New Issue
Block a user