Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2c32aebca2 | |||
| 374a247531 | |||
| 9d7daa36d3 | |||
| 63892006cc | |||
| b87232bf99 | |||
| f0d314b4f0 | |||
| 03b8733d88 | |||
| 3026c403dd | |||
| 48d584fe70 |
@@ -4,13 +4,13 @@
|
|||||||
/* Base units */
|
/* Base units */
|
||||||
/* --vw is set by ThemeProvider */
|
/* --vw is set by ThemeProvider */
|
||||||
|
|
||||||
--background: #fbfaff;;
|
--background: #fafafa;
|
||||||
--card: #f7f5ff;;
|
--card: #f4f4f5;
|
||||||
--foreground: #0f0022;;
|
--foreground: #27272a;
|
||||||
--primary-cta: #8b5cf6;;
|
--primary-cta: #3f3f46;
|
||||||
--secondary-cta: #ffffff;;
|
--secondary-cta: #ffffff;
|
||||||
--accent: #d8cef5;;
|
--accent: #facc15;
|
||||||
--background-accent: #c4a8f9;;
|
--background-accent: #eab308;
|
||||||
|
|
||||||
/* 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-public-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-public-sans), sans-serif;
|
font-family: var(--font-inter-tight), sans-serif;
|
||||||
}
|
}
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
"use client"
|
"use client";
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal';
|
import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal';
|
||||||
@@ -8,7 +8,8 @@ import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
|
|||||||
import TestimonialCardNine from '@/components/sections/testimonial/TestimonialCardNine';
|
import TestimonialCardNine from '@/components/sections/testimonial/TestimonialCardNine';
|
||||||
import ContactFaq from '@/components/sections/contact/ContactFaq';
|
import ContactFaq from '@/components/sections/contact/ContactFaq';
|
||||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||||
import { Award, Calendar, Heart, Sparkles, Star } from "lucide-react";
|
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||||
|
import { Award, Calendar, Heart, Sparkles, Star, Linkedin } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -145,6 +146,60 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div id="products" data-section="products">
|
||||||
|
<ProductCardTwo
|
||||||
|
products={[
|
||||||
|
{
|
||||||
|
id: "1",
|
||||||
|
brand: "Trattoria",
|
||||||
|
name: "Handmade Pasta Selection",
|
||||||
|
price: "$18.95",
|
||||||
|
rating: 5,
|
||||||
|
reviewCount: "2.4k",
|
||||||
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766760339172-wtq2r8qq.jpg",
|
||||||
|
imageAlt: "Handmade pasta selection"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "2",
|
||||||
|
brand: "Trattoria",
|
||||||
|
name: "Fresh Seafood Risotto",
|
||||||
|
price: "$24.95",
|
||||||
|
rating: 5,
|
||||||
|
reviewCount: "1.8k",
|
||||||
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766760340157-xnafc0cw.jpg",
|
||||||
|
imageAlt: "Fresh seafood risotto"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "3",
|
||||||
|
brand: "Trattoria",
|
||||||
|
name: "Premium Italian Wine Pairing",
|
||||||
|
price: "$45.00",
|
||||||
|
rating: 5,
|
||||||
|
reviewCount: "892",
|
||||||
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766760342753-3muw0pvy.jpg",
|
||||||
|
imageAlt: "Premium Italian wine selection"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "4",
|
||||||
|
brand: "Trattoria",
|
||||||
|
name: "Homemade Tiramisu Dessert",
|
||||||
|
price: "$12.95",
|
||||||
|
rating: 5,
|
||||||
|
reviewCount: "1.2k",
|
||||||
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766760341776-od1mgbjg.jpg",
|
||||||
|
imageAlt: "Homemade tiramisu dessert"
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
title="Our Menu Specialties"
|
||||||
|
description="Explore our signature dishes and carefully curated selections that showcase authentic Italian flavors."
|
||||||
|
tag="Menu"
|
||||||
|
textboxLayout="default"
|
||||||
|
animationType="slide-up"
|
||||||
|
gridVariant="uniform-all-items-equal"
|
||||||
|
useInvertedBackground="noInvert"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="testimonials" data-section="testimonials">
|
<div id="testimonials" data-section="testimonials">
|
||||||
<TestimonialCardNine
|
<TestimonialCardNine
|
||||||
testimonials={[
|
testimonials={[
|
||||||
|
|||||||
Reference in New Issue
Block a user