3 Commits

Author SHA1 Message Date
616a82ec6a Update src/app/page.tsx 2026-06-03 19:29:42 +00:00
4f5d28ea32 Update src/app/page.tsx 2026-06-03 19:27:22 +00:00
bf7fc5873b Update src/app/layout.tsx 2026-06-03 19:27:22 +00:00

View File

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