4 Commits

Author SHA1 Message Date
086ced1c29 Update src/app/page.tsx 2025-12-25 15:58:09 +00:00
3ae9cbe20a Update src/app/globals.css 2025-12-25 15:00:46 +00:00
e63c09a433 Update src/app/page.tsx 2025-12-25 14:57:25 +00:00
f383ac0273 Update src/app/globals.css 2025-12-25 14:57:24 +00:00
2 changed files with 14 additions and 14 deletions

View File

@@ -4,13 +4,13 @@
/* Base units */ /* Base units */
/* --vw is set by ThemeProvider */ /* --vw is set by ThemeProvider */
--background: #ffffff;; --background: #ffffff;
--card: #fcfcfc;; --card: #fcfcfc;
--foreground: #080015e6;; --foreground: #121200e6;
--primary-cta: #7c3aed;; --primary-cta: #ffcf40;
--secondary-cta: #ffffff;; --secondary-cta: #ffffff;
--accent: #e2e2e2;; --accent: #e2e2e2;
--background-accent: #c4c4c4;; --background-accent: #c4c4c4;
/* 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);
@@ -495,7 +495,7 @@ html {
body { body {
background-color: var(--background); background-color: var(--background);
color: var(--foreground); color: var(--foreground);
font-family: var(--font-cormorant), sans-serif; font-family: var(--font-inter-tight), sans-serif;
position: relative; position: relative;
min-height: 100vh; min-height: 100vh;
overscroll-behavior: none; overscroll-behavior: none;
@@ -508,5 +508,5 @@ h3,
h4, h4,
h5, h5,
h6 { h6 {
font-family: var(--font-cormorant), sans-serif; font-family: var(--font-inter-tight), sans-serif;
} }

View File

@@ -1,4 +1,4 @@
"use client" "use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
@@ -35,7 +35,7 @@ export default function LandingPage() {
{ name: "Contact", id: "contact" } { name: "Contact", id: "contact" }
]} ]}
button={{ button={{
text: "Order Now", text: "Order Now - $45",
href: "contact" href: "contact"
}} }}
/> />
@@ -92,21 +92,21 @@ export default function LandingPage() {
{ {
id: "1", id: "1",
name: "Single Origin Espresso", name: "Single Origin Espresso",
price: "$4.50", price: "$45",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766669020152-7lol4evi.jpg", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766669020152-7lol4evi.jpg",
imageAlt: "Rich espresso shot" imageAlt: "Rich espresso shot"
}, },
{ {
id: "2", id: "2",
name: "Silky Cappuccino", name: "Silky Cappuccino",
price: "$5.50", price: "$45",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766669024641-xdzx7wx8.jpg", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766669024641-xdzx7wx8.jpg",
imageAlt: "Creamy cappuccino with latte art" imageAlt: "Creamy cappuccino with latte art"
}, },
{ {
id: "3", id: "3",
name: "Cold Brew Delight", name: "Cold Brew Delight",
price: "$5.00", price: "$45",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766669025552-45dtt24c.jpg", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766669025552-45dtt24c.jpg",
imageAlt: "Refreshing cold brew coffee" imageAlt: "Refreshing cold brew coffee"
} }