Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b23e625529 |
@@ -6,18 +6,48 @@ import "@/lib/gsap-setup";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Poppins } from "next/font/google";
|
||||
import { Libre_Baskerville } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
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!',
|
||||
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({
|
||||
variable: "--font-poppins", subsets: ["latin"],
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
const libreBaskerville = Libre_Baskerville({
|
||||
variable: "--font-libre-baskerville",
|
||||
subsets: ["latin"],
|
||||
weight: ["400", "700"],
|
||||
});
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export default function RootLayout({
|
||||
@@ -28,7 +58,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${poppins.variable} antialiased`}>
|
||||
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
Reference in New Issue
Block a user