Compare commits
6 Commits
version_10
...
version_12
| Author | SHA1 | Date | |
|---|---|---|---|
| 873c0bcdee | |||
| 3092a2a600 | |||
| 2a1fa61650 | |||
| f6ef7cefdb | |||
| 01dc6a0057 | |||
| 4da424142b |
@@ -1,13 +1,13 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "@/app/globals.css";
|
|
||||||
|
|
||||||
const inter = Inter({
|
const inter = Inter({
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
variable: "--font-inter", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Giina Flowers", description: "Exquisite handcrafted floral arrangements delivered with love"};
|
title: "Giina Flowers", description: "Handcrafted floral arrangements delivered with love and passion"
|
||||||
|
};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
"use client"
|
"use client";
|
||||||
|
|
||||||
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 HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
|
||||||
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';
|
||||||
@@ -39,33 +39,19 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboard
|
<HeroLogoBillboard
|
||||||
title="Discover the Beauty of Nature"
|
logoText="Giina"
|
||||||
description="Handcrafted floral arrangements delivered with love, passion, and attention to every detail. Fresh flowers for every moment."
|
description="Handcrafted floral arrangements delivered with love, passion, and attention to every detail. Fresh flowers for every moment."
|
||||||
background={{ variant: "plain" }}
|
background={{ variant: "plain" }}
|
||||||
tag="Fresh Blooms"
|
|
||||||
tagIcon={Flower2}
|
|
||||||
tagAnimation="opacity"
|
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Shop Now", href: "products" },
|
{ text: "Shop Now", href: "/shop" },
|
||||||
{ text: "Learn More", href: "about" }
|
{ text: "Learn More", href: "#about" }
|
||||||
]}
|
]}
|
||||||
buttonAnimation="blur-reveal"
|
buttonAnimation="blur-reveal"
|
||||||
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="slide-up"
|
mediaAnimation="slide-up"
|
||||||
|
frameStyle="card"
|
||||||
ariaLabel="Hero section with floral arrangements"
|
ariaLabel="Hero section with floral arrangements"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -95,7 +81,7 @@ export default function LandingPage() {
|
|||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "View All Collections", href: "contact" }
|
{ text: "View All Collections", href: "/shop" }
|
||||||
]}
|
]}
|
||||||
buttonAnimation="blur-reveal"
|
buttonAnimation="blur-reveal"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
|
|||||||
Reference in New Issue
Block a user