diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 9c94561..7e99bde 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,49 +1,18 @@
-import type { Metadata } from "next";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
import "./globals.css";
-import "@/lib/gsap-setup";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import { getVisualEditScript } from "@/utils/visual-edit-script";
-import { Inter_Tight } from "next/font/google";
-
-
-
-export const metadata: Metadata = {
- title: 'Roast & Bloom | Artisan Coffee Shop',
- description: 'Local artisan coffee shop serving premium roasted beans, handcrafted espresso, and fresh pastries in a cozy, welcoming community atmosphere.',
- openGraph: {
- "title": "Roast & Bloom",
- "description": "Local artisan coffee shop serving premium roasted beans.",
- "siteName": "Roast & Bloom",
- "type": "website"
- },
-};
-
-const interTight = Inter_Tight({
- variable: "--font-inter-tight",
- subsets: ["latin"],
- weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
-});
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-