Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e7165ae2b8 | |||
| 94ccdb1243 | |||
| 09ab0e672a | |||
| 698c1ce75b | |||
| 61f40c21c2 | |||
| 83b1999b5d | |||
| 10898c48e6 | |||
| 1c4b10230e | |||
| c34016dabe |
@@ -28,12 +28,11 @@ export default function BlogPage() {
|
|||||||
<NavbarStyleFullscreen
|
<NavbarStyleFullscreen
|
||||||
brandName="Beauty and the Beast"
|
brandName="Beauty and the Beast"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
|
||||||
{ name: "Shop", id: "products" },
|
{ name: "Shop", id: "products" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Collection", id: "features" },
|
{ name: "Collection", id: "features" },
|
||||||
{ name: "Reviews", id: "testimonials" },
|
{ name: "Reviews", id: "testimonials" },
|
||||||
{ name: "Contact", id: "contact" }
|
{ name: "Contact", id: "/contact" }
|
||||||
]}
|
]}
|
||||||
bottomLeftText="Enchanted Drinkware"
|
bottomLeftText="Enchanted Drinkware"
|
||||||
bottomRightText="hello@beautyandthebeast.com"
|
bottomRightText="hello@beautyandthebeast.com"
|
||||||
@@ -82,7 +81,7 @@ export default function BlogPage() {
|
|||||||
{
|
{
|
||||||
items: [
|
items: [
|
||||||
{ label: "Customer Reviews", href: "testimonials" },
|
{ label: "Customer Reviews", href: "testimonials" },
|
||||||
{ label: "Contact Us", href: "contact" },
|
{ label: "Contact Us", href: "/contact" },
|
||||||
{ label: "Shipping Info", href: "#" },
|
{ label: "Shipping Info", href: "#" },
|
||||||
{ label: "Returns Policy", href: "#" }
|
{ label: "Returns Policy", href: "#" }
|
||||||
]
|
]
|
||||||
|
|||||||
107
src/app/contact/page.tsx
Normal file
107
src/app/contact/page.tsx
Normal file
@@ -0,0 +1,107 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||||
|
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||||
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||||
|
|
||||||
|
export default function ContactPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="elastic-effect"
|
||||||
|
defaultTextAnimation="background-highlight"
|
||||||
|
borderRadius="pill"
|
||||||
|
contentWidth="smallMedium"
|
||||||
|
sizing="largeSizeMediumTitles"
|
||||||
|
background="aurora"
|
||||||
|
cardStyle="glass-elevated"
|
||||||
|
primaryButtonStyle="double-inset"
|
||||||
|
secondaryButtonStyle="layered"
|
||||||
|
headingFontWeight="extrabold"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<div id="nav" data-section="nav">
|
||||||
|
<NavbarStyleFullscreen
|
||||||
|
brandName="Beauty and the Beast"
|
||||||
|
navItems={[
|
||||||
|
{ name: "Shop", id: "products" },
|
||||||
|
{ name: "About", id: "about" },
|
||||||
|
{ name: "Collection", id: "features" },
|
||||||
|
{ name: "Reviews", id: "testimonials" },
|
||||||
|
{ name: "Contact", id: "/contact" }
|
||||||
|
]}
|
||||||
|
bottomLeftText="Enchanted Drinkware"
|
||||||
|
bottomRightText="hello@beautyandthebeast.com"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="contact" data-section="contact">
|
||||||
|
<ContactSplit
|
||||||
|
tag="Get in Touch"
|
||||||
|
title="We'd Love to Hear From You"
|
||||||
|
description="Have questions about our enchanted drinkware? Reach out to us and our team will get back to you as soon as possible."
|
||||||
|
background={{ variant: "sparkles-gradient" }}
|
||||||
|
useInvertedBackground={false}
|
||||||
|
imageSrc="https://img.b2bpic.net/free-photo/hands-working-pottery-wheel_181624-57055.jpg"
|
||||||
|
imageAlt="Artisan crafting"
|
||||||
|
mediaAnimation="slide-up"
|
||||||
|
mediaPosition="right"
|
||||||
|
inputPlaceholder="Enter your email"
|
||||||
|
buttonText="Send Message"
|
||||||
|
termsText="We'll respond to your inquiry within 24 business hours."
|
||||||
|
onSubmit={(email) => console.log('Contact inquiry from:', email)}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="footer" data-section="footer">
|
||||||
|
<FooterLogoEmphasis
|
||||||
|
logoText="Beauty and the Beast"
|
||||||
|
columns={[
|
||||||
|
{
|
||||||
|
items: [
|
||||||
|
{ label: "Shop Collections", href: "products" },
|
||||||
|
{ label: "Best Sellers", href: "products" },
|
||||||
|
{ label: "New Arrivals", href: "products" },
|
||||||
|
{ label: "Gift Sets", href: "products" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
items: [
|
||||||
|
{ label: "About Us", href: "about" },
|
||||||
|
{ label: "Craftsmanship", href: "features" },
|
||||||
|
{ label: "Our Story", href: "about" },
|
||||||
|
{ label: "Sustainability", href: "about" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
items: [
|
||||||
|
{ label: "Customer Reviews", href: "testimonials" },
|
||||||
|
{ label: "Contact Us", href: "/contact" },
|
||||||
|
{ label: "Shipping Info", href: "#" },
|
||||||
|
{ label: "Returns Policy", href: "#" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
items: [
|
||||||
|
{ label: "Privacy Policy", href: "#" },
|
||||||
|
{ label: "Terms of Service", href: "#" },
|
||||||
|
{ label: "Cookie Policy", href: "#" },
|
||||||
|
{ label: "Accessibility", href: "#" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
items: [
|
||||||
|
{ label: "Instagram", href: "https://instagram.com" },
|
||||||
|
{ label: "Facebook", href: "https://facebook.com" },
|
||||||
|
{ label: "Pinterest", href: "https://pinterest.com" },
|
||||||
|
{ label: "Newsletter", href: "#" }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -33,7 +33,7 @@ export default function LandingPage() {
|
|||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Collection", id: "features" },
|
{ name: "Collection", id: "features" },
|
||||||
{ name: "Reviews", id: "testimonials" },
|
{ name: "Reviews", id: "testimonials" },
|
||||||
{ name: "Contact", id: "contact" }
|
{ name: "Contact", id: "/contact" }
|
||||||
]}
|
]}
|
||||||
bottomLeftText="Enchanted Drinkware"
|
bottomLeftText="Enchanted Drinkware"
|
||||||
bottomRightText="hello@beautyandthebeast.com"
|
bottomRightText="hello@beautyandthebeast.com"
|
||||||
@@ -203,7 +203,7 @@ export default function LandingPage() {
|
|||||||
{
|
{
|
||||||
items: [
|
items: [
|
||||||
{ label: "Customer Reviews", href: "testimonials" },
|
{ label: "Customer Reviews", href: "testimonials" },
|
||||||
{ label: "Contact Us", href: "contact" },
|
{ label: "Contact Us", href: "/contact" },
|
||||||
{ label: "Shipping Info", href: "#" },
|
{ label: "Shipping Info", href: "#" },
|
||||||
{ label: "Returns Policy", href: "#" }
|
{ label: "Returns Policy", href: "#" }
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -85,12 +85,11 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
<NavbarStyleFullscreen
|
<NavbarStyleFullscreen
|
||||||
brandName="Beauty and the Beast"
|
brandName="Beauty and the Beast"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Shop", id: "products" },
|
||||||
{ name: "Shop", id: "/shop" },
|
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Collection", id: "features" },
|
{ name: "Collection", id: "features" },
|
||||||
{ name: "Reviews", id: "testimonials" },
|
{ name: "Reviews", id: "testimonials" },
|
||||||
{ name: "Contact", id: "contact" }
|
{ name: "Contact", id: "/contact" }
|
||||||
]}
|
]}
|
||||||
bottomLeftText="Enchanted Drinkware"
|
bottomLeftText="Enchanted Drinkware"
|
||||||
bottomRightText="hello@beautyandthebeast.com"
|
bottomRightText="hello@beautyandthebeast.com"
|
||||||
@@ -123,7 +122,7 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
{
|
{
|
||||||
items: [
|
items: [
|
||||||
{ label: "Customer Reviews", href: "testimonials" },
|
{ label: "Customer Reviews", href: "testimonials" },
|
||||||
{ label: "Contact Us", href: "contact" }
|
{ label: "Contact Us", href: "/contact" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -163,12 +162,11 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
<NavbarStyleFullscreen
|
<NavbarStyleFullscreen
|
||||||
brandName="Beauty and the Beast"
|
brandName="Beauty and the Beast"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Shop", id: "products" },
|
||||||
{ name: "Shop", id: "/shop" },
|
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Collection", id: "features" },
|
{ name: "Collection", id: "features" },
|
||||||
{ name: "Reviews", id: "testimonials" },
|
{ name: "Reviews", id: "testimonials" },
|
||||||
{ name: "Contact", id: "contact" }
|
{ name: "Contact", id: "/contact" }
|
||||||
]}
|
]}
|
||||||
bottomLeftText="Enchanted Drinkware"
|
bottomLeftText="Enchanted Drinkware"
|
||||||
bottomRightText="hello@beautyandthebeast.com"
|
bottomRightText="hello@beautyandthebeast.com"
|
||||||
@@ -209,7 +207,7 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
{
|
{
|
||||||
items: [
|
items: [
|
||||||
{ label: "Customer Reviews", href: "testimonials" },
|
{ label: "Customer Reviews", href: "testimonials" },
|
||||||
{ label: "Contact Us", href: "contact" }
|
{ label: "Contact Us", href: "/contact" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -248,12 +246,11 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
<NavbarStyleFullscreen
|
<NavbarStyleFullscreen
|
||||||
brandName="Beauty and the Beast"
|
brandName="Beauty and the Beast"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Shop", id: "products" },
|
||||||
{ name: "Shop", id: "/shop" },
|
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Collection", id: "features" },
|
{ name: "Collection", id: "features" },
|
||||||
{ name: "Reviews", id: "testimonials" },
|
{ name: "Reviews", id: "testimonials" },
|
||||||
{ name: "Contact", id: "contact" }
|
{ name: "Contact", id: "/contact" }
|
||||||
]}
|
]}
|
||||||
bottomLeftText="Enchanted Drinkware"
|
bottomLeftText="Enchanted Drinkware"
|
||||||
bottomRightText="hello@beautyandthebeast.com"
|
bottomRightText="hello@beautyandthebeast.com"
|
||||||
@@ -319,7 +316,7 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
{
|
{
|
||||||
items: [
|
items: [
|
||||||
{ label: "Customer Reviews", href: "testimonials" },
|
{ label: "Customer Reviews", href: "testimonials" },
|
||||||
{ label: "Contact Us", href: "contact" }
|
{ label: "Contact Us", href: "/contact" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -37,12 +37,11 @@ export default function ShopPage() {
|
|||||||
<NavbarStyleFullscreen
|
<NavbarStyleFullscreen
|
||||||
brandName="Beauty and the Beast"
|
brandName="Beauty and the Beast"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Shop", id: "products" },
|
||||||
{ name: "Shop", id: "/shop" },
|
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Collection", id: "features" },
|
{ name: "Collection", id: "features" },
|
||||||
{ name: "Reviews", id: "testimonials" },
|
{ name: "Reviews", id: "testimonials" },
|
||||||
{ name: "Contact", id: "contact" }
|
{ name: "Contact", id: "/contact" }
|
||||||
]}
|
]}
|
||||||
bottomLeftText="Enchanted Drinkware"
|
bottomLeftText="Enchanted Drinkware"
|
||||||
bottomRightText="hello@beautyandthebeast.com"
|
bottomRightText="hello@beautyandthebeast.com"
|
||||||
@@ -75,7 +74,7 @@ export default function ShopPage() {
|
|||||||
{
|
{
|
||||||
items: [
|
items: [
|
||||||
{ label: "Customer Reviews", href: "testimonials" },
|
{ label: "Customer Reviews", href: "testimonials" },
|
||||||
{ label: "Contact Us", href: "contact" }
|
{ label: "Contact Us", href: "/contact" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -114,12 +113,11 @@ export default function ShopPage() {
|
|||||||
<NavbarStyleFullscreen
|
<NavbarStyleFullscreen
|
||||||
brandName="Beauty and the Beast"
|
brandName="Beauty and the Beast"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Shop", id: "products" },
|
||||||
{ name: "Shop", id: "/shop" },
|
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Collection", id: "features" },
|
{ name: "Collection", id: "features" },
|
||||||
{ name: "Reviews", id: "testimonials" },
|
{ name: "Reviews", id: "testimonials" },
|
||||||
{ name: "Contact", id: "contact" }
|
{ name: "Contact", id: "/contact" }
|
||||||
]}
|
]}
|
||||||
bottomLeftText="Enchanted Drinkware"
|
bottomLeftText="Enchanted Drinkware"
|
||||||
bottomRightText="hello@beautyandthebeast.com"
|
bottomRightText="hello@beautyandthebeast.com"
|
||||||
@@ -160,7 +158,7 @@ export default function ShopPage() {
|
|||||||
{
|
{
|
||||||
items: [
|
items: [
|
||||||
{ label: "Customer Reviews", href: "testimonials" },
|
{ label: "Customer Reviews", href: "testimonials" },
|
||||||
{ label: "Contact Us", href: "contact" }
|
{ label: "Contact Us", href: "/contact" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user