Compare commits
36 Commits
version_1
...
version_12
| Author | SHA1 | Date | |
|---|---|---|---|
| 873c0bcdee | |||
| 3092a2a600 | |||
| 2a1fa61650 | |||
| f6ef7cefdb | |||
| 01dc6a0057 | |||
| 4da424142b | |||
| 196bdef6b6 | |||
| 6e9af91b20 | |||
| f47c5633ab | |||
| 119add91be | |||
| 61889b3dc3 | |||
| 69ab7853b1 | |||
| f08a7c1987 | |||
| 8409bf3dd4 | |||
| 8f9a8a0e1f | |||
| 38f4562b45 | |||
| cab508c61b | |||
| 585c981546 | |||
| 5d7ad9e87e | |||
| cc72489a2b | |||
| 7600558766 | |||
| 8b5c57f878 | |||
| 41e7a11197 | |||
| 4adaa2a974 | |||
| 6a383e825d | |||
| 6fec0f1434 | |||
| 5d61d15a29 | |||
| 822703222c | |||
| e250953f4e | |||
| 977b321c0b | |||
| 7ed3da4abf | |||
| 2aa5838ce4 | |||
| aae9debf47 | |||
| 07cf220bfc | |||
| cc3de9fdce | |||
| 25c1c9a290 |
@@ -1,7 +1,7 @@
|
||||
"use client";
|
||||
|
||||
import ReactLenis from "lenis/react";
|
||||
import BlogCardTwo from '@/components/sections/blog/BlogCardTwo';
|
||||
import BlogCardOne from '@/components/sections/blog/BlogCardOne';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
@@ -43,7 +43,7 @@ export default function BlogPage() {
|
||||
</div>
|
||||
) : (
|
||||
<div id="blog" data-section="blog">
|
||||
<BlogCardTwo
|
||||
<BlogCardOne
|
||||
blogs={posts}
|
||||
title="Flower Care & Inspiration"
|
||||
description="Discover the art of flower arrangement, care tips, and seasonal inspiration from our expert florists"
|
||||
@@ -61,23 +61,23 @@ export default function BlogPage() {
|
||||
columns={[
|
||||
{
|
||||
title: "Collections", items: [
|
||||
{ label: "All Flowers", href: "#products" },
|
||||
{ label: "Seasonal", href: "#products" },
|
||||
{ label: "Premium", href: "#products" },
|
||||
{ label: "Custom Orders", href: "#contact" }
|
||||
{ label: "All Flowers", href: "products" },
|
||||
{ label: "Seasonal", href: "products" },
|
||||
{ label: "Premium", href: "products" },
|
||||
{ label: "Custom Orders", href: "contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "About", items: [
|
||||
{ label: "Our Story", href: "#about" },
|
||||
{ label: "Why Choose Us", href: "#features" },
|
||||
{ label: "Testimonials", href: "#testimonials" },
|
||||
{ label: "Our Story", href: "about" },
|
||||
{ label: "Why Choose Us", href: "features" },
|
||||
{ label: "Testimonials", href: "testimonials" },
|
||||
{ label: "Blog", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Support", items: [
|
||||
{ label: "Contact Us", href: "#contact" },
|
||||
{ label: "Contact Us", href: "contact" },
|
||||
{ label: "Delivery Info", href: "#" },
|
||||
{ label: "Care Guide", href: "#" },
|
||||
{ label: "FAQ", href: "#" }
|
||||
@@ -98,4 +98,4 @@ export default function BlogPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,43 +1,22 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Inter_Tight } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { Inter } from "next/font/google";
|
||||
|
||||
const interTight = Inter_Tight({
|
||||
variable: "--font-inter-tight", subsets: ["latin"],
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Giina Flowers - Fresh Floral Arrangements Delivered", description: "Discover exquisite handcrafted flower arrangements by Giina. Premium fresh blooms delivered with care. Shop our collections today.", keywords: "fresh flowers, flower delivery, floral arrangements, bouquets, premium flowers", openGraph: {
|
||||
title: "Giina Flowers - Premium Floral Arrangements", description: "Experience the beauty of nature with Giina's handcrafted floral arrangements. Fresh flowers delivered with love.", type: "website", siteName: "Giina Flowers", images: [{
|
||||
url: "https://img.b2bpic.net/free-photo/closeup-shot-bouquet-with-roses-vase-near-window-sunlight_181624-30882.jpg", alt: "Giina Flowers Collection"
|
||||
}]
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Giina Flowers - Premium Floral Arrangements", description: "Handcrafted fresh flower bouquets delivered with care and expertise.", images: ["https://img.b2bpic.net/free-photo/closeup-shot-bouquet-with-roses-vase-near-window-sunlight_181624-30882.jpg"]
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true
|
||||
}
|
||||
title: "Giina Flowers", description: "Handcrafted floral arrangements delivered with love and passion"
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${interTight.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.variable}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1290,7 +1269,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,14 +1,15 @@
|
||||
"use client"
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
|
||||
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import AboutMetric from '@/components/sections/about/AboutMetric';
|
||||
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
|
||||
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
|
||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import MetricCardTen from '@/components/sections/metrics/MetricCardTen';
|
||||
import { Flower2, Sparkles, Heart, Flower, Award, MapPin, Leaf, Mail } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
@@ -38,36 +39,20 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardGallery
|
||||
title="Exquisite Flowers for Every Moment"
|
||||
description="Discover the beauty of nature with Giina's handcrafted floral arrangements. Fresh flowers delivered with love, passion, and attention to every detail."
|
||||
tag="Premium Blooms"
|
||||
tagIcon={Flower2}
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "radial-gradient" }}
|
||||
<HeroLogoBillboard
|
||||
logoText="Giina"
|
||||
description="Handcrafted floral arrangements delivered with love, passion, and attention to every detail. Fresh flowers for every moment."
|
||||
background={{ variant: "plain" }}
|
||||
buttons={[
|
||||
{ text: "Shop Now", href: "#products" },
|
||||
{ text: "Shop Now", href: "/shop" },
|
||||
{ text: "Learn More", href: "#about" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/closeup-shot-bouquet-with-roses-vase-near-window-sunlight_181624-30882.jpg", imageAlt: "Fresh rose bouquet arrangement"
|
||||
},
|
||||
{
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/bouquet-pink-roses-with-blue-ribbon-vintage-wooden-background_1220-288.jpg", imageAlt: "Colorful tulip collection"
|
||||
},
|
||||
{
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/floral-art-wreath-mixed-flowers-hands-man_114579-2484.jpg", imageAlt: "Bright sunflower bouquet"
|
||||
},
|
||||
{
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/bouquet-pink-roses-with-blue-ribbon-vintage-wooden-background_1220-284.jpg", imageAlt: "Elegant white lily arrangement"
|
||||
},
|
||||
{
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/florist-charming-venue-details-decorative_1304-2503.jpg", imageAlt: "Exotic purple orchid display"
|
||||
}
|
||||
]}
|
||||
mediaAnimation="blur-reveal"
|
||||
buttonAnimation="blur-reveal"
|
||||
imageSrc="https://img.b2bpic.net/free-photo/closeup-shot-bouquet-with-roses-vase-near-window-sunlight_181624-30882.jpg"
|
||||
imageAlt="Fresh rose bouquet arrangement"
|
||||
mediaAnimation="slide-up"
|
||||
frameStyle="card"
|
||||
ariaLabel="Hero section with floral arrangements"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -96,7 +81,7 @@ export default function LandingPage() {
|
||||
}
|
||||
]}
|
||||
buttons={[
|
||||
{ text: "View All Collections", href: "#contact" }
|
||||
{ text: "View All Collections", href: "/shop" }
|
||||
]}
|
||||
buttonAnimation="blur-reveal"
|
||||
useInvertedBackground={false}
|
||||
@@ -147,6 +132,27 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardTen
|
||||
metrics={[
|
||||
{
|
||||
id: "1", title: "Senior Florist, Boutique Design", subtitle: "London, UK · Full-time · Remote eligible", category: "Design", value: "£35K – £45K", buttons: [{ text: "Apply Now", href: "#" }]
|
||||
},
|
||||
{
|
||||
id: "2", title: "Product Manager, E-Commerce", subtitle: "New York, NY · Full-time", category: "Product", value: "$95K – $130K", buttons: [{ text: "Apply Now", href: "#" }]
|
||||
},
|
||||
{
|
||||
id: "3", title: "Marketing Specialist, Brand", subtitle: "Remote · Full-time", category: "Marketing", value: "$60K – $85K", buttons: [{ text: "Apply Now", href: "#" }]
|
||||
}
|
||||
]}
|
||||
title="Join Our Growing Team"
|
||||
description="We're looking for talented individuals who are passionate about flowers and customer excellence. Explore open positions and grow with Giina."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardFifteen
|
||||
testimonial="Giina flowers transformed my wedding day. The arrangements were breathtaking, fresh, and exactly what I envisioned. The team's attention to detail and customer service was exceptional. I couldn't have asked for better!"
|
||||
@@ -192,23 +198,23 @@ export default function LandingPage() {
|
||||
columns={[
|
||||
{
|
||||
title: "Collections", items: [
|
||||
{ label: "All Flowers", href: "#products" },
|
||||
{ label: "Seasonal", href: "#products" },
|
||||
{ label: "Premium", href: "#products" },
|
||||
{ label: "Custom Orders", href: "#contact" }
|
||||
{ label: "All Flowers", href: "products" },
|
||||
{ label: "Seasonal", href: "products" },
|
||||
{ label: "Premium", href: "products" },
|
||||
{ label: "Custom Orders", href: "contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "About", items: [
|
||||
{ label: "Our Story", href: "#about" },
|
||||
{ label: "Why Choose Us", href: "#features" },
|
||||
{ label: "Testimonials", href: "#testimonials" },
|
||||
{ label: "Our Story", href: "about" },
|
||||
{ label: "Why Choose Us", href: "features" },
|
||||
{ label: "Testimonials", href: "testimonials" },
|
||||
{ label: "Blog", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Support", items: [
|
||||
{ label: "Contact Us", href: "#contact" },
|
||||
{ label: "Contact Us", href: "contact" },
|
||||
{ label: "Delivery Info", href: "#" },
|
||||
{ label: "Care Guide", href: "#" },
|
||||
{ label: "FAQ", href: "#" }
|
||||
@@ -228,4 +234,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -89,8 +89,7 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
{ name: "Collections", id: "products" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Why Giina", id: "features" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Shop", id: "/shop" }
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||
/>
|
||||
@@ -104,23 +103,23 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
columns={[
|
||||
{
|
||||
title: "Collections", items: [
|
||||
{ label: "All Flowers", href: "#products" },
|
||||
{ label: "Seasonal", href: "#products" },
|
||||
{ label: "Premium", href: "#products" },
|
||||
{ label: "Custom Orders", href: "#contact" }
|
||||
{ label: "All Flowers", href: "products" },
|
||||
{ label: "Seasonal", href: "products" },
|
||||
{ label: "Premium", href: "products" },
|
||||
{ label: "Custom Orders", href: "contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "About", items: [
|
||||
{ label: "Our Story", href: "#about" },
|
||||
{ label: "Why Choose Us", href: "#features" },
|
||||
{ label: "Testimonials", href: "#testimonials" },
|
||||
{ label: "Our Story", href: "about" },
|
||||
{ label: "Why Choose Us", href: "features" },
|
||||
{ label: "Testimonials", href: "testimonials" },
|
||||
{ label: "Blog", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Support", items: [
|
||||
{ label: "Contact Us", href: "#contact" },
|
||||
{ label: "Contact Us", href: "contact" },
|
||||
{ label: "Delivery Info", href: "#" },
|
||||
{ label: "Care Guide", href: "#" },
|
||||
{ label: "FAQ", href: "#" }
|
||||
@@ -166,8 +165,7 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
{ name: "Collections", id: "products" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Why Giina", id: "features" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Shop", id: "/shop" }
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||
/>
|
||||
@@ -189,23 +187,23 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
columns={[
|
||||
{
|
||||
title: "Collections", items: [
|
||||
{ label: "All Flowers", href: "#products" },
|
||||
{ label: "Seasonal", href: "#products" },
|
||||
{ label: "Premium", href: "#products" },
|
||||
{ label: "Custom Orders", href: "#contact" }
|
||||
{ label: "All Flowers", href: "products" },
|
||||
{ label: "Seasonal", href: "products" },
|
||||
{ label: "Premium", href: "products" },
|
||||
{ label: "Custom Orders", href: "contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "About", items: [
|
||||
{ label: "Our Story", href: "#about" },
|
||||
{ label: "Why Choose Us", href: "#features" },
|
||||
{ label: "Testimonials", href: "#testimonials" },
|
||||
{ label: "Our Story", href: "about" },
|
||||
{ label: "Why Choose Us", href: "features" },
|
||||
{ label: "Testimonials", href: "testimonials" },
|
||||
{ label: "Blog", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Support", items: [
|
||||
{ label: "Contact Us", href: "#contact" },
|
||||
{ label: "Contact Us", href: "contact" },
|
||||
{ label: "Delivery Info", href: "#" },
|
||||
{ label: "Care Guide", href: "#" },
|
||||
{ label: "FAQ", href: "#" }
|
||||
@@ -250,8 +248,7 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
{ name: "Collections", id: "products" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Why Giina", id: "features" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Shop", id: "/shop" }
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||
/>
|
||||
@@ -298,23 +295,23 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
columns={[
|
||||
{
|
||||
title: "Collections", items: [
|
||||
{ label: "All Flowers", href: "#products" },
|
||||
{ label: "Seasonal", href: "#products" },
|
||||
{ label: "Premium", href: "#products" },
|
||||
{ label: "Custom Orders", href: "#contact" }
|
||||
{ label: "All Flowers", href: "products" },
|
||||
{ label: "Seasonal", href: "products" },
|
||||
{ label: "Premium", href: "products" },
|
||||
{ label: "Custom Orders", href: "contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "About", items: [
|
||||
{ label: "Our Story", href: "#about" },
|
||||
{ label: "Why Choose Us", href: "#features" },
|
||||
{ label: "Testimonials", href: "#testimonials" },
|
||||
{ label: "Our Story", href: "about" },
|
||||
{ label: "Why Choose Us", href: "features" },
|
||||
{ label: "Testimonials", href: "testimonials" },
|
||||
{ label: "Blog", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Support", items: [
|
||||
{ label: "Contact Us", href: "#contact" },
|
||||
{ label: "Contact Us", href: "contact" },
|
||||
{ label: "Delivery Info", href: "#" },
|
||||
{ label: "Care Guide", href: "#" },
|
||||
{ label: "FAQ", href: "#" }
|
||||
@@ -335,4 +332,4 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -42,8 +42,7 @@ export default function ShopPage() {
|
||||
{ name: "Collections", id: "products" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Why Giina", id: "features" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Shop", id: "/shop" }
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||
/>
|
||||
@@ -57,23 +56,23 @@ export default function ShopPage() {
|
||||
columns={[
|
||||
{
|
||||
title: "Collections", items: [
|
||||
{ label: "All Flowers", href: "#products" },
|
||||
{ label: "Seasonal", href: "#products" },
|
||||
{ label: "Premium", href: "#products" },
|
||||
{ label: "Custom Orders", href: "#contact" }
|
||||
{ label: "All Flowers", href: "products" },
|
||||
{ label: "Seasonal", href: "products" },
|
||||
{ label: "Premium", href: "products" },
|
||||
{ label: "Custom Orders", href: "contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "About", items: [
|
||||
{ label: "Our Story", href: "#about" },
|
||||
{ label: "Why Choose Us", href: "#features" },
|
||||
{ label: "Testimonials", href: "#testimonials" },
|
||||
{ label: "Our Story", href: "about" },
|
||||
{ label: "Why Choose Us", href: "features" },
|
||||
{ label: "Testimonials", href: "testimonials" },
|
||||
{ label: "Blog", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Support", items: [
|
||||
{ label: "Contact Us", href: "#contact" },
|
||||
{ label: "Contact Us", href: "contact" },
|
||||
{ label: "Delivery Info", href: "#" },
|
||||
{ label: "Care Guide", href: "#" },
|
||||
{ label: "FAQ", href: "#" }
|
||||
@@ -118,8 +117,7 @@ export default function ShopPage() {
|
||||
{ name: "Collections", id: "products" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Why Giina", id: "features" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Shop", id: "/shop" }
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||
/>
|
||||
@@ -141,23 +139,23 @@ export default function ShopPage() {
|
||||
columns={[
|
||||
{
|
||||
title: "Collections", items: [
|
||||
{ label: "All Flowers", href: "#products" },
|
||||
{ label: "Seasonal", href: "#products" },
|
||||
{ label: "Premium", href: "#products" },
|
||||
{ label: "Custom Orders", href: "#contact" }
|
||||
{ label: "All Flowers", href: "products" },
|
||||
{ label: "Seasonal", href: "products" },
|
||||
{ label: "Premium", href: "products" },
|
||||
{ label: "Custom Orders", href: "contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "About", items: [
|
||||
{ label: "Our Story", href: "#about" },
|
||||
{ label: "Why Choose Us", href: "#features" },
|
||||
{ label: "Testimonials", href: "#testimonials" },
|
||||
{ label: "Our Story", href: "about" },
|
||||
{ label: "Why Choose Us", href: "features" },
|
||||
{ label: "Testimonials", href: "testimonials" },
|
||||
{ label: "Blog", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Support", items: [
|
||||
{ label: "Contact Us", href: "#contact" },
|
||||
{ label: "Contact Us", href: "contact" },
|
||||
{ label: "Delivery Info", href: "#" },
|
||||
{ label: "Care Guide", href: "#" },
|
||||
{ label: "FAQ", href: "#" }
|
||||
@@ -178,4 +176,4 @@ export default function ShopPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user