4 Commits

Author SHA1 Message Date
a2fad59d61 Update src/app/page.tsx 2026-01-14 09:41:42 +00:00
d643c4d4b1 Update src/app/layout.tsx 2026-01-14 09:41:42 +00:00
e393a87ea4 Update src/app/page.tsx 2026-01-13 14:30:51 +00:00
77d55c7f11 Update src/app/globals.css 2026-01-13 14:30:50 +00:00
3 changed files with 16 additions and 16 deletions

View File

@@ -4,21 +4,21 @@
/* Base units */ /* Base units */
/* --vw is set by ThemeProvider */ /* --vw is set by ThemeProvider */
/* --background: #fafffb;; /* --background: #f7f6f7;;
--card: #f7fffa;; --card: #ffffff;;
--foreground: #001a0a;; --foreground: #251a0c;;
--primary-cta: #0a7039;; --primary-cta: #f4c408;;
--secondary-cta: #ffffff;; --secondary-cta: #ffffff;;
--accent: #a8d9be;; --accent: #f4ca26;;
--background-accent: #6bbf8e;; */ --background-accent: #e8daa8;; */
--background: #fafffb;; --background: #f7f6f7;;
--card: #f7fffa;; --card: #ffffff;;
--foreground: #001a0a;; --foreground: #251a0c;;
--primary-cta: #0a7039;; --primary-cta: #f4c408;;
--secondary-cta: #ffffff;; --secondary-cta: #ffffff;;
--accent: #a8d9be;; --accent: #f4ca26;;
--background-accent: #6bbf8e;; --background-accent: #e8daa8;;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);

View File

@@ -1260,4 +1260,4 @@ export default function RootLayout({
</ServiceWrapper> </ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -1,4 +1,4 @@
"use client" "use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal'; import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal';
@@ -35,7 +35,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroLogoBillboard <HeroLogoBillboard
logoText="Gloria-Flower" logoText="Gloria-Flower"
description="Discover the finest handcrafted floral arrangements for every occasion. From elegant roses to vibrant seasonal flowers, we bring nature's beauty to your doorstep." description="Celebrate life's most beautiful moments with our exquisite collection of flowers. Whether you're looking for romantic roses, cheerful sunflowers, vibrant tulips, or seasonal blooms, we have the perfect arrangement. Each flower is carefully selected and hand-arranged by our expert florists to bring natural beauty and elegance to your special day. Order fresh flowers online with same-day delivery available in select areas."
imageSrc="https://img.b2bpic.net/free-photo/bouquet-pink-roses-with-green-leaves-inside-vase_114579-1439.jpg" imageSrc="https://img.b2bpic.net/free-photo/bouquet-pink-roses-with-green-leaves-inside-vase_114579-1439.jpg"
imageAlt="Beautiful floral arrangement" imageAlt="Beautiful floral arrangement"
frameStyle="card" frameStyle="card"
@@ -193,4 +193,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }