11 Commits

Author SHA1 Message Date
1ca1d75e05 Merge version_7 into main
Merge version_7 into main
2025-12-28 12:58:20 +00:00
50945b0869 Update src/app/page.tsx 2025-12-28 12:58:15 +00:00
3b4466cb2c Update src/app/layout.tsx 2025-12-28 12:58:14 +00:00
a252479caf Update src/app/globals.css 2025-12-28 12:58:13 +00:00
7580205a02 Merge version_5 into main
Merge version_5 into main
2025-12-28 11:53:59 +00:00
756eaea081 Update src/app/globals.css 2025-12-28 11:53:54 +00:00
3a0f696237 Merge version_3 into main
Merge version_3 into main
2025-12-28 11:17:25 +00:00
fd04113c58 Update src/app/page.tsx 2025-12-28 11:17:21 +00:00
9dfcff456e Merge version_3 into main
Merge version_3 into main
2025-12-28 11:15:19 +00:00
ad1fced854 Update src/app/page.tsx 2025-12-28 11:15:14 +00:00
9fb8e0f191 Update src/app/globals.css 2025-12-28 11:15:13 +00:00
3 changed files with 20 additions and 17 deletions

View File

@@ -4,13 +4,13 @@
/* Base units */ /* Base units */
/* --vw is set by ThemeProvider */ /* --vw is set by ThemeProvider */
--background: #fff8f5;; --background: #ffffff;
--card: #fff0eb;; --card: #f7fffa;
--foreground: #3d2c29;; --foreground: #001a0a;
--primary-cta: #e8a090;; --primary-cta: #0a7039;
--secondary-cta: #ffffff;; --secondary-cta: #ffffff;
--accent: #f5d5cc;; --accent: #a8d9be;
--background-accent: #f0c4b8;; --background-accent: #6bbf8e;
/* 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-open-sans), 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-open-sans), sans-serif; font-family: var(--font-inter-tight), sans-serif;
} }

View File

@@ -1274,4 +1274,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 NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
@@ -122,28 +122,32 @@ export default function LandingPage() {
name: "Classic Espresso", name: "Classic Espresso",
price: "$3.50", price: "$3.50",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766920190905-afgbf22n.jpg", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766920190905-afgbf22n.jpg",
imageAlt: "Bold and rich espresso shot" imageAlt: "Bold and rich espresso shot",
rating: 4.8
}, },
{ {
id: "2", id: "2",
name: "Silky Cappuccino", name: "Silky Cappuccino",
price: "$5.00", price: "$5.00",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766504472539-8fcfbdrv.jpg", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766504472539-8fcfbdrv.jpg",
imageAlt: "Creamy cappuccino with perfect foam" imageAlt: "Creamy cappuccino with perfect foam",
rating: 4.9
}, },
{ {
id: "3", id: "3",
name: "Smooth Latte", name: "Smooth Latte",
price: "$5.50", price: "$5.50",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766920191959-azsx4ig5.jpg", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766920191959-azsx4ig5.jpg",
imageAlt: "Smooth and creamy latte" imageAlt: "Smooth and creamy latte",
rating: 4.7
}, },
{ {
id: "4", id: "4",
name: "Cold Brew", name: "Cold Brew",
price: "$4.50", price: "$4.50",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766920192796-cd28tqbs.jpg", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766920192796-cd28tqbs.jpg",
imageAlt: "Refreshing iced cold brew" imageAlt: "Refreshing iced cold brew",
rating: 4.6
} }
]} ]}
gridVariant="uniform-all-items-equal" gridVariant="uniform-all-items-equal"
@@ -263,7 +267,6 @@ export default function LandingPage() {
} }
]} ]}
animationType="slide-up" animationType="slide-up"
speed={40}
/> />
</div> </div>
@@ -371,4 +374,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }