Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c8cd3b3b01 | |||
| 2f00714c03 | |||
| 75987d809d |
@@ -4,13 +4,13 @@
|
|||||||
/* Base units */
|
/* Base units */
|
||||||
/* --vw is set by ThemeProvider */
|
/* --vw is set by ThemeProvider */
|
||||||
|
|
||||||
--background: #fafffb;;
|
--background: #ffffff;
|
||||||
--card: #f7fffa;;
|
--card: #fcfcfc;
|
||||||
--foreground: #001a0a;;
|
--foreground: #0a0018e6;
|
||||||
--primary-cta: #0a7039;;
|
--primary-cta: #8b5cf6;
|
||||||
--secondary-cta: #ffffff;;
|
--secondary-cta: #ffffff;
|
||||||
--accent: #a8d9be;;
|
--accent: #e2e2e2;
|
||||||
--background-accent: #6bbf8e;;
|
--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-manrope), 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-manrope), sans-serif;
|
font-family: var(--font-inter-tight), sans-serif;
|
||||||
}
|
}
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
|
import HeroSplitLarge from '@/components/sections/hero/HeroSplitLarge';
|
||||||
import ParallaxAbout from '@/components/sections/about/ParallaxAbout';
|
import ParallaxAbout from '@/components/sections/about/ParallaxAbout';
|
||||||
import ProductCardSeven from '@/components/sections/product/ProductCardSeven';
|
import ProductCardSeven from '@/components/sections/product/ProductCardSeven';
|
||||||
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
|
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
|
||||||
@@ -38,19 +38,13 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboardCarousel
|
<HeroSplitLarge
|
||||||
title="Premium Alpine Skiing Gear"
|
title="Premium Alpine Skiing Gear"
|
||||||
description="Engineered in Switzerland for mountain performance. Discover the gear trusted by expert skiers worldwide."
|
description="Engineered in Switzerland for mountain performance. Discover the gear trusted by expert skiers worldwide."
|
||||||
tag="Swiss Quality"
|
tag="Swiss Quality"
|
||||||
tagIcon={Mountain}
|
tagIcon={Mountain}
|
||||||
mediaItems={[
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766754763910-3ftz1crb.jpg"
|
||||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766754763910-3ftz1crb.jpg", imageAlt: "Professional ski jacket in action" },
|
imageAlt="Professional ski jacket in action"
|
||||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766871932620-ht0scays.jpg", imageAlt: "Advanced alpine skiing equipment" },
|
|
||||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766871933540-evgjz64z.jpg", imageAlt: "High-performance ski boots" },
|
|
||||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766871934455-0av76mse.jpg", imageAlt: "Protective ski gloves and accessories" },
|
|
||||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766871935432-jng9ir3c.jpg", imageAlt: "Safety ski helmet" },
|
|
||||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766871934897-qjnbnmv9.jpg", imageAlt: "Professional ski poles" }
|
|
||||||
]}
|
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Shop Now", href: "products" },
|
{ text: "Shop Now", href: "products" },
|
||||||
{ text: "Learn More", href: "about" }
|
{ text: "Learn More", href: "about" }
|
||||||
|
|||||||
Reference in New Issue
Block a user