12 Commits

Author SHA1 Message Date
3eead3a5f1 Update src/app/page.tsx 2025-12-26 15:15:49 +00:00
75e36a35aa Merge version_9 into main
Merge version_9 into main
2025-12-26 15:14:04 +00:00
de40531d43 Update src/app/page.tsx 2025-12-26 15:14:00 +00:00
1627049cc4 Merge version_9 into main
Merge version_9 into main
2025-12-26 15:11:44 +00:00
7d5c4fbaa0 Update src/app/page.tsx 2025-12-26 15:11:39 +00:00
9a54247e31 Update src/app/layout.tsx 2025-12-26 15:11:38 +00:00
99148f90fe Update src/app/globals.css 2025-12-26 15:11:37 +00:00
f429acdec2 Merge version_6 into main
Merge version_6 into main
2025-12-26 15:03:37 +00:00
2cad0ac7c4 Merge version_5 into main
Merge version_5 into main
2025-12-26 15:00:28 +00:00
9ae5a4807e Merge version_3 into main
Merge version_3 into main
2025-12-26 14:53:20 +00:00
f41204c309 Merge version_3 into main
Merge version_3 into main
2025-12-26 14:51:29 +00:00
44b26dd043 Merge version_2 into main
Merge version_2 into main
2025-12-26 14:49:10 +00:00
3 changed files with 20 additions and 9 deletions

View File

@@ -4,13 +4,13 @@
/* Base units */ /* Base units */
/* --vw is set by ThemeProvider */ /* --vw is set by ThemeProvider */
--background: #fafafa; --background: #fafffb;
--card: #f4f4f5; --card: #f7fffa;
--foreground: #27272a; --foreground: #001a0a;
--primary-cta: #3f3f46; --primary-cta: #0a7039;
--secondary-cta: #ffffff; --secondary-cta: #ffffff;
--accent: #facc15; --accent: #a8d9be;
--background-accent: #eab308; --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);

View File

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

View File

@@ -9,7 +9,7 @@ import TestimonialCardNine from '@/components/sections/testimonial/TestimonialCa
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 ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import { Award, Calendar, Heart, Sparkles, Star, Linkedin } from "lucide-react"; import { Award, Calendar, Heart, Sparkles, Star } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -107,6 +107,7 @@ export default function LandingPage() {
imageAlt="Warm and inviting Trattoria dining room" imageAlt="Warm and inviting Trattoria dining room"
imagePosition="right" imagePosition="right"
useInvertedBackground="noInvert" useInvertedBackground="noInvert"
rating={5}
/> />
</div> </div>
@@ -143,6 +144,16 @@ export default function LandingPage() {
useInvertedBackground="noInvert" useInvertedBackground="noInvert"
tag="Dining Excellence" tag="Dining Excellence"
tagIcon={Award} tagIcon={Award}
mediaItems={[
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766760339172-wtq2r8qq.jpg",
imageAlt: "Quality ingredients selection"
},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766416780858-eeoell34.jpg",
imageAlt: "Elegant Trattoria ambiance"
}
]}
/> />
</div> </div>
@@ -300,4 +311,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }