6 Commits

Author SHA1 Message Date
caa74ee185 Merge version_3 into main
Merge version_3 into main
2025-12-27 22:14:26 +00:00
ec9ae0da83 Update src/app/page.tsx 2025-12-27 22:14:21 +00:00
80bd5afd28 Merge version_2 into main
Merge version_2 into main
2025-12-27 21:56:44 +00:00
72b16fd580 Update src/app/page.tsx 2025-12-27 21:56:39 +00:00
e822c78bdc Update src/app/layout.tsx 2025-12-27 21:56:38 +00:00
9bf23a9da3 Update src/app/globals.css 2025-12-27 21:56:37 +00:00
3 changed files with 23 additions and 18 deletions

View File

@@ -4,13 +4,13 @@
/* Base units */
/* --vw is set by ThemeProvider */
--background: #fff8f5;;
--card: #fff0eb;;
--foreground: #3d2c29;;
--primary-cta: #e8a090;;
--secondary-cta: #ffffff;;
--accent: #f5d5cc;;
--background-accent: #f0c4b8;;
--background: #ffffff;
--card: #fcfcfc;
--foreground: #000000e6;
--primary-cta: #1a1a1a;
--secondary-cta: #ffffff;
--accent: #bebebe;
--background-accent: #c4c4c4;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
@@ -495,7 +495,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-sora), sans-serif;
font-family: var(--font-inter-tight), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -508,5 +508,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-sora), sans-serif;
font-family: var(--font-inter-tight), sans-serif;
}

View File

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

View File

@@ -4,7 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import HeroLogoBillboardSplit from '@/components/sections/hero/HeroLogoBillboardSplit';
import TagAbout from '@/components/sections/about/TagAbout';
import ProductCardFive from '@/components/sections/product/ProductCardFive';
import ProductCardSeven from '@/components/sections/product/ProductCardSeven';
import FeatureCardFifteen from '@/components/sections/feature/FeatureCardFifteen';
import TestimonialCardEight from '@/components/sections/testimonial/TestimonialCardEight';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
@@ -64,44 +64,49 @@ export default function LandingPage() {
</div>
<div id="products" data-section="products">
<ProductCardFive
<ProductCardSeven
title="Featured Gear"
description="Discover our collection of premium skiing equipment handpicked for quality and performance"
tag="Best Sellers"
products={[
{
id: "1",
name: "Pro Ski Jacket",
price: "$349",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766871933755-ytfdu3v3.jpg",
imageAlt: "Professional ski jacket",
button: { text: "Add to Cart", href: "#" },
isFavorited: false
},
{
id: "2",
name: "Performance Boots",
price: "$299",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766871933540-evgjz64z.jpg",
imageAlt: "Performance ski boots",
button: { text: "Add to Cart", href: "#" },
isFavorited: false
},
{
id: "3",
name: "Safety Helmet",
price: "$179",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766871934897-qjnbnmv9.jpg",
imageAlt: "Safety ski helmet",
button: { text: "Add to Cart", href: "#" },
isFavorited: false
},
{
id: "4",
name: "Premium Goggles",
price: "$159",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766871935857-cl800vwo.jpg",
imageAlt: "Premium ski goggles",
button: { text: "Add to Cart", href: "#" },
isFavorited: false
},
{
id: "5",
name: "Insulated Gloves",
price: "$89",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766871936802-jkl8rfp9.jpg",
imageAlt: "Insulated ski gloves",
button: { text: "Add to Cart", href: "#" },
isFavorited: false
}
]}
@@ -310,4 +315,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}