Update src/app/support/page.tsx
This commit is contained in:
@@ -1,25 +1,25 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import Link from "next/link";
|
|
||||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||||
import FaqBase from '@/components/sections/faq/FaqBase';
|
import FaqBase from '@/components/sections/faq/FaqBase';
|
||||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||||
|
import { MessageSquare } from "lucide-react";
|
||||||
|
|
||||||
export default function SupportPage() {
|
export default function SupportPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="elastic-effect"
|
defaultButtonVariant="bounce-effect"
|
||||||
defaultTextAnimation="background-highlight"
|
defaultTextAnimation="entrance-slide"
|
||||||
borderRadius="pill"
|
borderRadius="rounded"
|
||||||
contentWidth="medium"
|
contentWidth="mediumLarge"
|
||||||
sizing="largeSmall"
|
sizing="mediumLargeSizeLargeTitles"
|
||||||
background="radialGradient"
|
background="circleGradient"
|
||||||
cardStyle="glass-elevated"
|
cardStyle="gradient-mesh"
|
||||||
primaryButtonStyle="inset-glow"
|
primaryButtonStyle="radial-glow"
|
||||||
secondaryButtonStyle="glass"
|
secondaryButtonStyle="layered"
|
||||||
headingFontWeight="extrabold"
|
headingFontWeight="bold"
|
||||||
>
|
>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
@@ -32,7 +32,7 @@ export default function SupportPage() {
|
|||||||
{ name: "Support", id: "/support" }
|
{ name: "Support", id: "/support" }
|
||||||
]}
|
]}
|
||||||
button={{ text: "Shop", href: "#shop" }}
|
button={{ text: "Shop", href: "#shop" }}
|
||||||
className="backdrop-blur-md border border-purple-600"
|
className="backdrop-blur-lg border border-accent/40"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -64,18 +64,15 @@ export default function SupportPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactSplitForm
|
<ContactCenter
|
||||||
title="Get in Touch"
|
tag="Newsletter"
|
||||||
description="Have questions? Our team is here to help. Send us a message and we'll get back to you within 24 hours."
|
title="Stay Updated"
|
||||||
inputs={[
|
description="Get the latest specs, performance updates, and exclusive field test results delivered to your inbox."
|
||||||
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
tagIcon={MessageSquare}
|
||||||
{ name: "email", type: "email", placeholder: "Your Email", required: true }
|
|
||||||
]}
|
|
||||||
textarea={{ name: "message", placeholder: "How can we help?", rows: 5, required: true }}
|
|
||||||
useInvertedBackground="invertDefault"
|
useInvertedBackground="invertDefault"
|
||||||
imageSrc="https://images.unsplash.com/photo-1478737270239-2f02b77fc618?w=800&q=80"
|
inputPlaceholder="your@email.com"
|
||||||
mediaPosition="right"
|
buttonText="Subscribe"
|
||||||
buttonText="Send Message"
|
onSubmit={(email) => console.log('Newsletter signup:', email)}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -115,4 +112,4 @@ export default function SupportPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user