Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| caa74ee185 | |||
| ec9ae0da83 | |||
| 80bd5afd28 | |||
| 72b16fd580 | |||
| e822c78bdc | |||
| 9bf23a9da3 |
@@ -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;
|
||||
}
|
||||
@@ -1277,4 +1277,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user