Switch to version 2: remove src/app/contact/page.tsx

This commit is contained in:
2026-03-05 22:26:11 +00:00
parent afd0f20994
commit afc2ea67c8

View File

@@ -1,90 +0,0 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import { Zap, Mail } from 'lucide-react';
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
defaultTextAnimation="entrance-slide"
borderRadius="soft"
contentWidth="small"
sizing="medium"
background="none"
cardStyle="subtle-shadow"
primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="radial-glow"
headingFontWeight="normal"
>
<div id="nav" data-section="nav">
<NavbarStyleApple
brandName="Rage Room Vienna"
navItems={[
{ name: "Packages", id: "/" },
{ name: "Experience", id: "/" },
{ name: "FAQ", id: "/" },
{ name: "Contact", id: "/contact" },
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactSplit
tag="Get In Touch"
tagIcon={Mail}
tagAnimation="slide-up"
title="We're Here to Help"
description="Have questions about our packages, group bookings, or special requests? Reach out to our team and we'll get back to you as soon as possible."
background={{ variant: "canvas-reveal" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/person-suffering-from-technology-addiction-cybersickness_23-2151552653.jpg?_wi=2"
imageAlt="Contact us"
mediaAnimation="blur-reveal"
mediaPosition="right"
inputPlaceholder="your@email.com"
buttonText="Send Message"
termsText="We'll respond to your inquiry within 24 hours. Your information is secure and won't be shared."
onSubmit={(email) => {
alert(`Thank you! We'll contact you at ${email} soon.`);
}}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/weathered-concrete-wall-texture-with-stains_632498-60807.jpg?_wi=2"
imageAlt="Industrial concrete background"
logoText="Rage Room Vienna"
copyrightText="© 2025 Rage Room Vienna | Adrenaline. Chaos. Freedom."
columns={[
{
title: "Experience", items: [
{ label: "Packages", href: "/" },
{ label: "About Us", href: "/" },
{ label: "Safety", href: "/" },
],
},
{
title: "Info", items: [
{ label: "Hours", href: "#" },
{ label: "Contact", href: "/contact" },
{ label: "Book Now", href: "https://booking.rageroomvienna.local" },
],
},
{
title: "Follow", items: [
{ label: "Instagram", href: "https://instagram.com" },
{ label: "Facebook", href: "https://facebook.com" },
{ label: "TikTok", href: "https://tiktok.com" },
],
},
]}
/>
</div>
</ThemeProvider>
);
}