Compare commits
23 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f47c5633ab | |||
| 119add91be | |||
| 61889b3dc3 | |||
| 69ab7853b1 | |||
| f08a7c1987 | |||
| 8409bf3dd4 | |||
| 8f9a8a0e1f | |||
| 38f4562b45 | |||
| cab508c61b | |||
| 585c981546 | |||
| 5d7ad9e87e | |||
| cc72489a2b | |||
| 7600558766 | |||
| 8b5c57f878 | |||
| 41e7a11197 | |||
| 4adaa2a974 | |||
| 6a383e825d | |||
| 6fec0f1434 | |||
| 5d61d15a29 | |||
| 822703222c | |||
| e250953f4e | |||
| 977b321c0b | |||
| 7ed3da4abf |
@@ -61,23 +61,23 @@ export default function BlogPage() {
|
|||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Collections", items: [
|
title: "Collections", items: [
|
||||||
{ label: "All Flowers", href: "#products" },
|
{ label: "All Flowers", href: "products" },
|
||||||
{ label: "Seasonal", href: "#products" },
|
{ label: "Seasonal", href: "products" },
|
||||||
{ label: "Premium", href: "#products" },
|
{ label: "Premium", href: "products" },
|
||||||
{ label: "Custom Orders", href: "#contact" }
|
{ label: "Custom Orders", href: "contact" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "About", items: [
|
title: "About", items: [
|
||||||
{ label: "Our Story", href: "#about" },
|
{ label: "Our Story", href: "about" },
|
||||||
{ label: "Why Choose Us", href: "#features" },
|
{ label: "Why Choose Us", href: "features" },
|
||||||
{ label: "Testimonials", href: "#testimonials" },
|
{ label: "Testimonials", href: "testimonials" },
|
||||||
{ label: "Blog", href: "#" }
|
{ label: "Blog", href: "#" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Support", items: [
|
title: "Support", items: [
|
||||||
{ label: "Contact Us", href: "#contact" },
|
{ label: "Contact Us", href: "contact" },
|
||||||
{ label: "Delivery Info", href: "#" },
|
{ label: "Delivery Info", href: "#" },
|
||||||
{ label: "Care Guide", href: "#" },
|
{ label: "Care Guide", href: "#" },
|
||||||
{ label: "FAQ", href: "#" }
|
{ label: "FAQ", href: "#" }
|
||||||
|
|||||||
@@ -1,43 +1,22 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Inter_Tight } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "@/app/globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const interTight = Inter_Tight({
|
const inter = Inter({
|
||||||
variable: "--font-inter-tight", subsets: ["latin"],
|
variable: "--font-inter", subsets: ["latin"],
|
||||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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", description: "Exquisite handcrafted floral arrangements delivered with love"};
|
||||||
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
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.variable}>{children}
|
||||||
<body
|
|
||||||
className={`${interTight.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1290,7 +1269,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
|
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
||||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||||
import AboutMetric from '@/components/sections/about/AboutMetric';
|
import AboutMetric from '@/components/sections/about/AboutMetric';
|
||||||
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
|
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
|
||||||
@@ -38,19 +38,34 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroLogoBillboard
|
<HeroBillboard
|
||||||
logoText="Exquisite Flowers for Every Moment"
|
title="Discover the Beauty of Nature"
|
||||||
description="Discover the beauty of nature with Giina's handcrafted floral arrangements. Fresh flowers delivered with love, passion, and attention to every detail."
|
description="Handcrafted floral arrangements delivered with love, passion, and attention to every detail. Fresh flowers for every moment."
|
||||||
|
background={{ variant: "plain" }}
|
||||||
|
tag="Fresh Blooms"
|
||||||
|
tagIcon={Flower2}
|
||||||
|
tagAnimation="opacity"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Shop Now", href: "#products" },
|
{ text: "Shop Now", href: "products" },
|
||||||
{ text: "Learn More", href: "#about" }
|
{ text: "Learn More", href: "about" }
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="blur-reveal"
|
||||||
background={{ variant: "radial-gradient" }}
|
avatars={[
|
||||||
|
{
|
||||||
|
src: "https://img.b2bpic.net/free-photo/cheerful-young-businesswoman-smiling-camera_74855-4022.jpg", alt: "Customer avatar 1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
src: "https://img.b2bpic.net/free-photo/smiling-hispanic-female-executive-wearing-eyeglasses-standing-studio_662251-664.jpg", alt: "Customer avatar 2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
src: "https://img.b2bpic.net/free-photo/young-beautiful-woman-smiling-posing-purple-wall_176420-2852.jpg", alt: "Customer avatar 3"
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
avatarText="Trusted by 5,000+ customers"
|
||||||
imageSrc="https://img.b2bpic.net/free-photo/closeup-shot-bouquet-with-roses-vase-near-window-sunlight_181624-30882.jpg"
|
imageSrc="https://img.b2bpic.net/free-photo/closeup-shot-bouquet-with-roses-vase-near-window-sunlight_181624-30882.jpg"
|
||||||
imageAlt="Fresh rose bouquet arrangement"
|
imageAlt="Fresh rose bouquet arrangement"
|
||||||
mediaAnimation="blur-reveal"
|
mediaAnimation="slide-up"
|
||||||
frameStyle="card"
|
ariaLabel="Hero section with floral arrangements"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -79,7 +94,7 @@ export default function LandingPage() {
|
|||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "View All Collections", href: "#contact" }
|
{ text: "View All Collections", href: "contact" }
|
||||||
]}
|
]}
|
||||||
buttonAnimation="blur-reveal"
|
buttonAnimation="blur-reveal"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
@@ -175,23 +190,23 @@ export default function LandingPage() {
|
|||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Collections", items: [
|
title: "Collections", items: [
|
||||||
{ label: "All Flowers", href: "#products" },
|
{ label: "All Flowers", href: "products" },
|
||||||
{ label: "Seasonal", href: "#products" },
|
{ label: "Seasonal", href: "products" },
|
||||||
{ label: "Premium", href: "#products" },
|
{ label: "Premium", href: "products" },
|
||||||
{ label: "Custom Orders", href: "#contact" }
|
{ label: "Custom Orders", href: "contact" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "About", items: [
|
title: "About", items: [
|
||||||
{ label: "Our Story", href: "#about" },
|
{ label: "Our Story", href: "about" },
|
||||||
{ label: "Why Choose Us", href: "#features" },
|
{ label: "Why Choose Us", href: "features" },
|
||||||
{ label: "Testimonials", href: "#testimonials" },
|
{ label: "Testimonials", href: "testimonials" },
|
||||||
{ label: "Blog", href: "#" }
|
{ label: "Blog", href: "#" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Support", items: [
|
title: "Support", items: [
|
||||||
{ label: "Contact Us", href: "#contact" },
|
{ label: "Contact Us", href: "contact" },
|
||||||
{ label: "Delivery Info", href: "#" },
|
{ label: "Delivery Info", href: "#" },
|
||||||
{ label: "Care Guide", href: "#" },
|
{ label: "Care Guide", href: "#" },
|
||||||
{ label: "FAQ", href: "#" }
|
{ label: "FAQ", href: "#" }
|
||||||
|
|||||||
@@ -103,23 +103,23 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Collections", items: [
|
title: "Collections", items: [
|
||||||
{ label: "All Flowers", href: "#products" },
|
{ label: "All Flowers", href: "products" },
|
||||||
{ label: "Seasonal", href: "#products" },
|
{ label: "Seasonal", href: "products" },
|
||||||
{ label: "Premium", href: "#products" },
|
{ label: "Premium", href: "products" },
|
||||||
{ label: "Custom Orders", href: "#contact" }
|
{ label: "Custom Orders", href: "contact" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "About", items: [
|
title: "About", items: [
|
||||||
{ label: "Our Story", href: "#about" },
|
{ label: "Our Story", href: "about" },
|
||||||
{ label: "Why Choose Us", href: "#features" },
|
{ label: "Why Choose Us", href: "features" },
|
||||||
{ label: "Testimonials", href: "#testimonials" },
|
{ label: "Testimonials", href: "testimonials" },
|
||||||
{ label: "Blog", href: "#" }
|
{ label: "Blog", href: "#" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Support", items: [
|
title: "Support", items: [
|
||||||
{ label: "Contact Us", href: "#contact" },
|
{ label: "Contact Us", href: "contact" },
|
||||||
{ label: "Delivery Info", href: "#" },
|
{ label: "Delivery Info", href: "#" },
|
||||||
{ label: "Care Guide", href: "#" },
|
{ label: "Care Guide", href: "#" },
|
||||||
{ label: "FAQ", href: "#" }
|
{ label: "FAQ", href: "#" }
|
||||||
@@ -187,23 +187,23 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Collections", items: [
|
title: "Collections", items: [
|
||||||
{ label: "All Flowers", href: "#products" },
|
{ label: "All Flowers", href: "products" },
|
||||||
{ label: "Seasonal", href: "#products" },
|
{ label: "Seasonal", href: "products" },
|
||||||
{ label: "Premium", href: "#products" },
|
{ label: "Premium", href: "products" },
|
||||||
{ label: "Custom Orders", href: "#contact" }
|
{ label: "Custom Orders", href: "contact" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "About", items: [
|
title: "About", items: [
|
||||||
{ label: "Our Story", href: "#about" },
|
{ label: "Our Story", href: "about" },
|
||||||
{ label: "Why Choose Us", href: "#features" },
|
{ label: "Why Choose Us", href: "features" },
|
||||||
{ label: "Testimonials", href: "#testimonials" },
|
{ label: "Testimonials", href: "testimonials" },
|
||||||
{ label: "Blog", href: "#" }
|
{ label: "Blog", href: "#" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Support", items: [
|
title: "Support", items: [
|
||||||
{ label: "Contact Us", href: "#contact" },
|
{ label: "Contact Us", href: "contact" },
|
||||||
{ label: "Delivery Info", href: "#" },
|
{ label: "Delivery Info", href: "#" },
|
||||||
{ label: "Care Guide", href: "#" },
|
{ label: "Care Guide", href: "#" },
|
||||||
{ label: "FAQ", href: "#" }
|
{ label: "FAQ", href: "#" }
|
||||||
@@ -295,23 +295,23 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Collections", items: [
|
title: "Collections", items: [
|
||||||
{ label: "All Flowers", href: "#products" },
|
{ label: "All Flowers", href: "products" },
|
||||||
{ label: "Seasonal", href: "#products" },
|
{ label: "Seasonal", href: "products" },
|
||||||
{ label: "Premium", href: "#products" },
|
{ label: "Premium", href: "products" },
|
||||||
{ label: "Custom Orders", href: "#contact" }
|
{ label: "Custom Orders", href: "contact" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "About", items: [
|
title: "About", items: [
|
||||||
{ label: "Our Story", href: "#about" },
|
{ label: "Our Story", href: "about" },
|
||||||
{ label: "Why Choose Us", href: "#features" },
|
{ label: "Why Choose Us", href: "features" },
|
||||||
{ label: "Testimonials", href: "#testimonials" },
|
{ label: "Testimonials", href: "testimonials" },
|
||||||
{ label: "Blog", href: "#" }
|
{ label: "Blog", href: "#" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Support", items: [
|
title: "Support", items: [
|
||||||
{ label: "Contact Us", href: "#contact" },
|
{ label: "Contact Us", href: "contact" },
|
||||||
{ label: "Delivery Info", href: "#" },
|
{ label: "Delivery Info", href: "#" },
|
||||||
{ label: "Care Guide", href: "#" },
|
{ label: "Care Guide", href: "#" },
|
||||||
{ label: "FAQ", href: "#" }
|
{ label: "FAQ", href: "#" }
|
||||||
|
|||||||
@@ -56,23 +56,23 @@ export default function ShopPage() {
|
|||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Collections", items: [
|
title: "Collections", items: [
|
||||||
{ label: "All Flowers", href: "#products" },
|
{ label: "All Flowers", href: "products" },
|
||||||
{ label: "Seasonal", href: "#products" },
|
{ label: "Seasonal", href: "products" },
|
||||||
{ label: "Premium", href: "#products" },
|
{ label: "Premium", href: "products" },
|
||||||
{ label: "Custom Orders", href: "#contact" }
|
{ label: "Custom Orders", href: "contact" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "About", items: [
|
title: "About", items: [
|
||||||
{ label: "Our Story", href: "#about" },
|
{ label: "Our Story", href: "about" },
|
||||||
{ label: "Why Choose Us", href: "#features" },
|
{ label: "Why Choose Us", href: "features" },
|
||||||
{ label: "Testimonials", href: "#testimonials" },
|
{ label: "Testimonials", href: "testimonials" },
|
||||||
{ label: "Blog", href: "#" }
|
{ label: "Blog", href: "#" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Support", items: [
|
title: "Support", items: [
|
||||||
{ label: "Contact Us", href: "#contact" },
|
{ label: "Contact Us", href: "contact" },
|
||||||
{ label: "Delivery Info", href: "#" },
|
{ label: "Delivery Info", href: "#" },
|
||||||
{ label: "Care Guide", href: "#" },
|
{ label: "Care Guide", href: "#" },
|
||||||
{ label: "FAQ", href: "#" }
|
{ label: "FAQ", href: "#" }
|
||||||
@@ -139,23 +139,23 @@ export default function ShopPage() {
|
|||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Collections", items: [
|
title: "Collections", items: [
|
||||||
{ label: "All Flowers", href: "#products" },
|
{ label: "All Flowers", href: "products" },
|
||||||
{ label: "Seasonal", href: "#products" },
|
{ label: "Seasonal", href: "products" },
|
||||||
{ label: "Premium", href: "#products" },
|
{ label: "Premium", href: "products" },
|
||||||
{ label: "Custom Orders", href: "#contact" }
|
{ label: "Custom Orders", href: "contact" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "About", items: [
|
title: "About", items: [
|
||||||
{ label: "Our Story", href: "#about" },
|
{ label: "Our Story", href: "about" },
|
||||||
{ label: "Why Choose Us", href: "#features" },
|
{ label: "Why Choose Us", href: "features" },
|
||||||
{ label: "Testimonials", href: "#testimonials" },
|
{ label: "Testimonials", href: "testimonials" },
|
||||||
{ label: "Blog", href: "#" }
|
{ label: "Blog", href: "#" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Support", items: [
|
title: "Support", items: [
|
||||||
{ label: "Contact Us", href: "#contact" },
|
{ label: "Contact Us", href: "contact" },
|
||||||
{ label: "Delivery Info", href: "#" },
|
{ label: "Delivery Info", href: "#" },
|
||||||
{ label: "Care Guide", href: "#" },
|
{ label: "Care Guide", href: "#" },
|
||||||
{ label: "FAQ", href: "#" }
|
{ label: "FAQ", href: "#" }
|
||||||
|
|||||||
Reference in New Issue
Block a user