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

This commit is contained in:
2026-03-03 16:09:21 +00:00
parent a6e121dedf
commit c3c7073be1

View File

@@ -1,55 +0,0 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
defaultTextAnimation="background-highlight"
borderRadius="soft"
contentWidth="medium"
sizing="mediumLarge"
background="none"
cardStyle="glass-depth"
primaryButtonStyle="shadow"
secondaryButtonStyle="solid"
headingFontWeight="bold"
>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[{"name":"Home","id":"home"},{"name":"About","id":"/about"},{"name":"Events","id":"/events"},{"name":"Team","id":"/team"},{"name":"Contact","id":"/contact"}]}
brandName="TechClub"
bottomLeftText="Join Our Community"
bottomRightText="tech@club.com"
/>
</div>
<div id="contact" data-section="contact">
<ContactSplitForm
title="Get in Touch"
description="Ready to join our community? Reach out to us with any questions or to express your interest in becoming a member."
inputs={[{"name":"name","type":"text","placeholder":"Your Name","required":true},{"name":"email","type":"email","placeholder":"Your Email","required":true}]}
textarea={{"name":"message","placeholder":"Tell us about your interests in tech...","rows":5,"required":true}}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/technology-unicorn-venture-workspace-with-pc-used-conduct-code-reviews_482257-118729.jpg?_wi=2"
imageAlt="Contact Us"
mediaAnimation="slide-up"
mediaPosition="right"
buttonText="Send Message"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="TechClub"
leftLink={{"text":"Privacy Policy","href":"#"}}
rightLink={{"text":"Terms of Service","href":"#"}}
/>
</div>
</ThemeProvider>
);
}