Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 616a82ec6a | |||
| 4f5d28ea32 | |||
| bf7fc5873b |
@@ -6,48 +6,18 @@ 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 { Libre_Baskerville } from "next/font/google";
|
import { Poppins } from "next/font/google";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: 'Tasteful Bites | Authentic Local Cuisine & Dining',
|
title: "Webild components 2",
|
||||||
description: 'Experience the best local dishes at Tasteful Bites. Fresh ingredients, delightful flavors, and a cozy atmosphere for memorable dining. Book your table today!',
|
description: "Generated by create next app",
|
||||||
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 libreBaskerville = Libre_Baskerville({
|
const poppins = Poppins({
|
||||||
variable: "--font-libre-baskerville",
|
variable: "--font-poppins", subsets: ["latin"],
|
||||||
subsets: ["latin"],
|
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||||
weight: ["400", "700"],
|
|
||||||
});
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
@@ -58,7 +28,7 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
|
<body className={`${poppins.variable} antialiased`}>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
<script
|
<script
|
||||||
|
|||||||
Reference in New Issue
Block a user