8 Commits

Author SHA1 Message Date
4f01fd3fb3 Update src/app/page.tsx 2026-03-04 22:43:45 +00:00
cf24e3bb5f Update src/app/layout.tsx 2026-03-04 22:43:45 +00:00
0d68d411cd Merge version_2 into main
Merge version_2 into main
2026-03-04 22:41:22 +00:00
96a695ec85 Update src/app/page.tsx 2026-03-04 22:41:17 +00:00
56a6d76a52 Update src/app/layout.tsx 2026-03-04 22:41:16 +00:00
3db5c671d7 Merge version_1 into main
Merge version_1 into main
2026-03-04 22:37:34 +00:00
57ffb0d914 Merge version_1 into main
Merge version_1 into main
2026-03-04 22:36:43 +00:00
fc23ede6f1 Merge version_1 into main
Merge version_1 into main
2026-03-04 22:35:39 +00:00
2 changed files with 7 additions and 44 deletions

View File

@@ -1,54 +1,17 @@
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"],
});
import "@/styles/globals.css";
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. Smash, destroy, and release your frustrations safely."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1379,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -98,6 +98,7 @@ export default function LandingPage() {
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
badgeClassName="px-3 py-1.5 rounded-full border-2 border-primary bg-primary/10 text-primary font-semibold text-sm"
/>
</div>