Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| fb0d3b8a42 | |||
| 8b0956cca0 | |||
| 7e54a6055c | |||
| 17c7e4dc9c | |||
| 147d44b344 | |||
| 67eb72ba79 |
70
src/app/contact/page.tsx
Normal file
70
src/app/contact/page.tsx
Normal file
@@ -0,0 +1,70 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import ContactText from '@/components/sections/contact/ContactText';
|
||||||
|
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||||
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
|
|
||||||
|
export default function ContactPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="expand-hover"
|
||||||
|
defaultTextAnimation="background-highlight"
|
||||||
|
borderRadius="pill"
|
||||||
|
contentWidth="smallMedium"
|
||||||
|
sizing="mediumLargeSizeMediumTitles"
|
||||||
|
background="grid"
|
||||||
|
cardStyle="gradient-mesh"
|
||||||
|
primaryButtonStyle="primary-glow"
|
||||||
|
secondaryButtonStyle="glass"
|
||||||
|
headingFontWeight="light"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<div id="nav" data-section="nav">
|
||||||
|
<NavbarLayoutFloatingInline
|
||||||
|
navItems={[
|
||||||
|
{ name: "Home", id: "hero" },
|
||||||
|
{ name: "About", id: "about" },
|
||||||
|
{ name: "Flowers", id: "products" },
|
||||||
|
{ name: "Testimonials", id: "testimonials" },
|
||||||
|
{ name: "Contact", id: "/contact" },
|
||||||
|
]}
|
||||||
|
brandName="Liza Flowers"
|
||||||
|
button={{ text: "Book Now", href: "/contact" }}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="contact" data-section="contact">
|
||||||
|
<ContactText
|
||||||
|
text="Flowers Studio Liza Contact: +309012312543 | 123 Botanical Ave, Athens"
|
||||||
|
background={{ variant: "sparkles-gradient" }}
|
||||||
|
useInvertedBackground={false}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="footer" data-section="footer">
|
||||||
|
<FooterBase
|
||||||
|
columns={[
|
||||||
|
{
|
||||||
|
title: "Navigate", items: [
|
||||||
|
{ label: "Studio", href: "/#about" },
|
||||||
|
{ label: "Collection", href: "/#products" },
|
||||||
|
{ label: "Contact", href: "/contact" },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Legal", items: [
|
||||||
|
{ label: "Privacy", href: "#" },
|
||||||
|
{ label: "Terms", href: "#" },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
]}
|
||||||
|
logoText="Liza Flowers"
|
||||||
|
copyrightText="© 2025 Liza Flowers Studio"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -37,11 +37,11 @@ export default function LandingPage() {
|
|||||||
{
|
{
|
||||||
name: "Testimonials", id: "testimonials"},
|
name: "Testimonials", id: "testimonials"},
|
||||||
{
|
{
|
||||||
name: "Contact", id: "contact"},
|
name: "Contact", id: "/contact"},
|
||||||
]}
|
]}
|
||||||
brandName="Liza Flowers"
|
brandName="Liza Flowers"
|
||||||
button={{
|
button={{
|
||||||
text: "Book Now", href: "#contact"
|
text: "Book Now", href: "/contact"
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -54,7 +54,7 @@ export default function LandingPage() {
|
|||||||
{
|
{
|
||||||
text: "View Collection", href: "#products"},
|
text: "View Collection", href: "#products"},
|
||||||
{
|
{
|
||||||
text: "Book Consultation", href: "#contact"},
|
text: "Book Consultation", href: "/contact"},
|
||||||
]}
|
]}
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_34my1kGeblbsCcwUUCcjBY9WFkg/young-woman-drinking-coffee-1774371711067-7933f7fb.png"
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_34my1kGeblbsCcwUUCcjBY9WFkg/young-woman-drinking-coffee-1774371711067-7933f7fb.png"
|
||||||
avatars={[
|
avatars={[
|
||||||
@@ -135,17 +135,6 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
|
||||||
<ContactCenter
|
|
||||||
useInvertedBackground={false}
|
|
||||||
background={{
|
|
||||||
variant: "sparkles-gradient"}}
|
|
||||||
title="Let’s Create Something Beautiful"
|
|
||||||
description="Interested in custom arrangements for your event or studio needs? Get in touch today."
|
|
||||||
tag="Get in Touch"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterBase
|
<FooterBase
|
||||||
columns={[
|
columns={[
|
||||||
@@ -156,7 +145,7 @@ export default function LandingPage() {
|
|||||||
{
|
{
|
||||||
label: "Collection", href: "#products"},
|
label: "Collection", href: "#products"},
|
||||||
{
|
{
|
||||||
label: "Contact", href: "#contact"},
|
label: "Contact", href: "/contact"},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user