5 Commits

Author SHA1 Message Date
ac667c6d9b Update src/app/globals.css 2026-01-13 12:54:34 +00:00
631d4b93e3 Update src/app/page.tsx 2026-01-13 12:47:06 +00:00
b1e2f7d37b Update src/app/layout.tsx 2026-01-13 12:47:05 +00:00
6fa7fbfb09 Update src/app/globals.css 2026-01-13 12:47:04 +00:00
97789d5857 Update src/app/page.tsx 2026-01-13 12:44:54 +00:00
3 changed files with 15 additions and 15 deletions

View File

@@ -4,21 +4,21 @@
/* Base units */ /* Base units */
/* --vw is set by ThemeProvider */ /* --vw is set by ThemeProvider */
/* --background: #f5f5f5;; /* --background: #f7f6f7;;
--card: #ffffff;; --card: #ffffff;;
--foreground: #1c1c1c;; --foreground: #251a0c;;
--primary-cta: #6139e6;; --primary-cta: #f4c408;;
--secondary-cta: #ffffff;; --secondary-cta: #ffffff;;
--accent: #6139e6;; --accent: #f4ca26;;
--background-accent: #b3a8e8;; */ --background-accent: #e8daa8;; */
--background: #f5f5f5;; --background: #f7f6f7;;
--card: #ffffff;; --card: #ffffff;;
--foreground: #1c1c1c;; --foreground: #251a0c;;
--primary-cta: #6139e6;; --primary-cta: #f4c408;;
--secondary-cta: #ffffff;; --secondary-cta: #ffffff;;
--accent: #6139e6;; --accent: #f4ca26;;
--background-accent: #b3a8e8;; --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 NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
@@ -45,7 +45,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroLogoBillboardSplit <HeroLogoBillboardSplit
logoText="Tu kvitka" logoText="Tu kvitka"
description="Discover the freshest, most beautiful flower arrangements crafted with love. Perfect for every occasion—birthdays, weddings, anniversaries, and more." description="Discover the freshest, most beautiful flower arrangements crafted with love. Perfect for every occasion—birthdays, weddings, anniversaries, and more. 123"
buttons={[ buttons={[
{ text: "Shop Now", href: "#products" }, { text: "Shop Now", href: "#products" },
{ text: "Learn More", href: "#about" } { text: "Learn More", href: "#about" }
@@ -192,7 +192,7 @@ export default function LandingPage() {
id: "4", title: "What payment methods do you accept?", content: "We accept all major credit cards (Visa, Mastercard, American Express), PayPal, bank transfers, and cash on delivery for local orders. All transactions are secure and encrypted." id: "4", title: "What payment methods do you accept?", content: "We accept all major credit cards (Visa, Mastercard, American Express), PayPal, bank transfers, and cash on delivery for local orders. All transactions are secure and encrypted."
}, },
{ {
id: "5", title: "What if I'm not satisfied with my order?", content: "Your satisfaction is our priority. If you're not happy with your flowers or arrangement, please contact us within 24 hours of delivery. We'll either replace your arrangement or provide a full refund, no questions asked." id: "5", title: "What if I'm not satisfied with your order?", content: "Your satisfaction is our priority. If you're not happy with your flowers or arrangement, please contact us within 24 hours of delivery. We'll either replace your arrangement or provide a full refund, no questions asked."
}, },
{ {
id: "6", title: "Do you deliver outside the city?", content: "We offer delivery within a 20km radius of the city center. For deliveries outside this zone, please contact us directly to discuss options and possible additional delivery fees." id: "6", title: "Do you deliver outside the city?", content: "We offer delivery within a 20km radius of the city center. For deliveries outside this zone, please contact us directly to discuss options and possible additional delivery fees."
@@ -255,4 +255,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }