Update src/app/contact/page.tsx

This commit is contained in:
2026-03-27 11:22:05 +00:00
parent 75d77a959e
commit f1693073ed

View File

@@ -3,99 +3,46 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
export default function LandingPage() {
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Shop",
id: "/shop",
},
{
name: "About",
id: "/about",
},
{
name: "FAQ",
id: "/faq",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="Sweet Temptation"
/>
</div>
<div id="contact-us" data-section="contact-us">
<ContactCTA
useInvertedBackground={false}
background={{
variant: "radial-gradient",
}}
tag="Get In Touch"
title="We'd Love To Hear From You"
description="Have questions about our pieces or styling? Send us a message."
buttons={[
{
text: "Contact Us",
href: "mailto:hello@sweettemptation.com",
},
]}
/>
</div>
<div id="home-footer" data-section="home-footer">
<FooterMedia
imageSrc="https://pixabay.com/get/g82fc9270d374b5c7d5d8d02b4df53a905b9d5329e624dfa20f949659bbc8cd159a664a6c64d04f8a82fd0afc5838227c700b94dd7603042ef144c3d405cb0967_1280.jpg?_wi=6"
columns={[
{
title: "Shop",
items: [
{
label: "Bras",
href: "/shop",
},
{
label: "Panties",
href: "/shop",
},
],
},
{
title: "Support",
items: [
{
label: "FAQ",
href: "/faq",
},
{
label: "Contact",
href: "/contact",
},
],
},
]}
logoText="Sweet Temptation"
copyrightText="© 2025 Sweet Temptation Intimates"
/>
</div>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "About", id: "/about" },
{ name: "FAQ", id: "/faq" },
{ name: "Contact", id: "/contact" }
]}
brandName="Sweet Temptation"
/>
</div>
<div id="contact-us" data-section="contact-us">
<ContactCTA
tag="Get In Touch"
title="We'd Love To Hear From You"
description="Have questions about our pieces or styling? Send us a message."
buttons={[{ text: "Contact Us", href: "mailto:hello@sweettemptation.com" }]}
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}