Merge version_2 into main
Merge version_2 into main
This commit was merged in pull request #2.
This commit is contained in:
87
src/app/contact-us/page.tsx
Normal file
87
src/app/contact-us/page.tsx
Normal file
@@ -0,0 +1,87 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
|
||||||
|
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||||
|
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||||
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||||
|
|
||||||
|
export default function ContactUsPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="bounce-effect"
|
||||||
|
defaultTextAnimation="background-highlight"
|
||||||
|
borderRadius="pill"
|
||||||
|
contentWidth="compact"
|
||||||
|
sizing="largeSizeMediumTitles"
|
||||||
|
background="blurBottom"
|
||||||
|
cardStyle="inset"
|
||||||
|
primaryButtonStyle="primary-glow"
|
||||||
|
secondaryButtonStyle="layered"
|
||||||
|
headingFontWeight="light"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<div id="nav" data-section="nav">
|
||||||
|
<NavbarLayoutFloatingOverlay
|
||||||
|
navItems={[
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "About", id: "/#about" },
|
||||||
|
{ name: "Services", id: "/#services" },
|
||||||
|
{ name: "Products", id: "/#products" },
|
||||||
|
{ name: "Testimonials", id: "/#testimonials" },
|
||||||
|
{ name: "Contact", id: "/contact-us" }
|
||||||
|
]}
|
||||||
|
brandName="Aetheria Luxuries"
|
||||||
|
button={{ text: "Get a Quote", href: "/contact-us" }}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="contact" data-section="contact">
|
||||||
|
<ContactCenter
|
||||||
|
useInvertedBackground={true}
|
||||||
|
background={{
|
||||||
|
variant: "radial-gradient"
|
||||||
|
}}
|
||||||
|
tag="Connect With Us"
|
||||||
|
title="Begin Your Journey to Luxury"
|
||||||
|
description="Contact us for bespoke services, personal consultations, or inquiries about our exclusive collections."
|
||||||
|
tagAnimation="none"
|
||||||
|
inputPlaceholder="Your Email Address"
|
||||||
|
buttonText="Send Inquiry"
|
||||||
|
termsText="By clicking Send Inquiry, you agree to our Privacy Policy."
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="footer" data-section="footer">
|
||||||
|
<FooterBase
|
||||||
|
columns={[
|
||||||
|
{
|
||||||
|
title: "Company", items: [
|
||||||
|
{ label: "About Us", href: "/#about" },
|
||||||
|
{ label: "Our Services", href: "/#services" },
|
||||||
|
{ label: "Our Portfolio", href: "/#products" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Support", items: [
|
||||||
|
{ label: "Contact", href: "/contact-us" },
|
||||||
|
{ label: "FAQs", href: "#" },
|
||||||
|
{ label: "Client Portal", href: "#" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Legal", items: [
|
||||||
|
{ label: "Privacy Policy", href: "#" },
|
||||||
|
{ label: "Terms of Service", href: "#" }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
logoText="Aetheria Luxuries"
|
||||||
|
copyrightText="© 2024 Aetheria Luxuries. All rights reserved."
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
|
||||||
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
|
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
|
||||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||||
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
|
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
|
||||||
@@ -32,7 +32,7 @@ export default function LandingPage() {
|
|||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home", id: "#home"},
|
name: "Home", id: "/"},
|
||||||
{
|
{
|
||||||
name: "About", id: "#about"},
|
name: "About", id: "#about"},
|
||||||
{
|
{
|
||||||
@@ -42,11 +42,11 @@ export default function LandingPage() {
|
|||||||
{
|
{
|
||||||
name: "Testimonials", id: "#testimonials"},
|
name: "Testimonials", id: "#testimonials"},
|
||||||
{
|
{
|
||||||
name: "Contact", id: "#contact"},
|
name: "Contact", id: "/contact-us"},
|
||||||
]}
|
]}
|
||||||
brandName="Aetheria Luxuries"
|
brandName="Aetheria Luxuries"
|
||||||
button={{
|
button={{
|
||||||
text: "Get a Quote", href: "#contact"}}
|
text: "Get a Quote", href: "/contact-us"}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -211,21 +211,6 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
|
||||||
<ContactCenter
|
|
||||||
useInvertedBackground={true}
|
|
||||||
background={{
|
|
||||||
variant: "radial-gradient"}}
|
|
||||||
tag="Connect With Us"
|
|
||||||
title="Begin Your Journey to Luxury"
|
|
||||||
description="Contact us for bespoke services, personal consultations, or inquiries about our exclusive collections."
|
|
||||||
tagAnimation="none"
|
|
||||||
inputPlaceholder="Your Email Address"
|
|
||||||
buttonText="Send Inquiry"
|
|
||||||
termsText="By clicking Send Inquiry, you agree to our Privacy Policy."
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterBase
|
<FooterBase
|
||||||
columns={[
|
columns={[
|
||||||
@@ -242,7 +227,7 @@ export default function LandingPage() {
|
|||||||
{
|
{
|
||||||
title: "Support", items: [
|
title: "Support", items: [
|
||||||
{
|
{
|
||||||
label: "Contact", href: "#contact"},
|
label: "Contact", href: "/contact-us"},
|
||||||
{
|
{
|
||||||
label: "FAQs", href: "#"},
|
label: "FAQs", href: "#"},
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user