Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 96a695ec85 | |||
| 56a6d76a52 | |||
| 3db5c671d7 | |||
| 57ffb0d914 | |||
| fc23ede6f1 |
@@ -1,54 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Manrope } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
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"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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: {
|
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."};
|
||||||
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"],
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1416,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -82,7 +82,7 @@ export default function LandingPage() {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "destroyer", badge: "Most Popular", badgeIcon: Zap,
|
id: "destroyer", badge: "Most Popular", badgeIcon: Zap,
|
||||||
price: "€65", subtitle: "Our customer favorite", buttons: [{ text: "Book Now", href: "contact" }],
|
price: "€65", subtitle: "Best Value – 60 Minutes of Pure Release", buttons: [{ text: "Book Now", href: "contact" }],
|
||||||
features: [
|
features: [
|
||||||
"60-minute session", "15 items to destroy", "Premium weapon arsenal", "Safety gear & gloves", "HD photo & video package", "Music selection included", "Post-session lounge access"
|
"60-minute session", "15 items to destroy", "Premium weapon arsenal", "Safety gear & gloves", "HD photo & video package", "Music selection included", "Post-session lounge access"
|
||||||
],
|
],
|
||||||
|
|||||||
Reference in New Issue
Block a user