From 56a6d76a526a9a3bf06e05a17a73c7fdb094d6ab Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 22:41:16 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 47 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 41 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3dd336e..8334c70 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Manrope } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Rage Room Vienna | Stress Relief & Smashing", description: "Experience cathartic destruction at Vienna's premier rage room. Break glass, smash furniture, and release stress. Book your session today.", keywords: "rage room Vienna, stress relief, smashing, destruction therapy, team building", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Rage Room Vienna | Ultimate Stress Relief", description: "Unleash your rage at Vienna's top-rated rage room. Safe, fun, and therapeutic destruction.", type: "website", siteName: "Rage Room Vienna", images: [ - { - url: "http://img.b2bpic.net/free-vector/realistic-glass-shard-pieces_52683-82591.jpg", alt: "Rage room destruction experience"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Rage Room Vienna - Destroy. Release. Heal.", description: "Book your smashing session at Vienna's ultimate rage room experience.", images: ["http://img.b2bpic.net/free-vector/realistic-glass-shard-pieces_52683-82591.jpg"], - }, -}; + title: "Rage Room Vienna", description: "Experience the ultimate stress relief at Vienna's premier rage room. Break glass, destroy furniture, and unleash your frustration in a safe, controlled environment."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}