2 Commits

Author SHA1 Message Date
b3a42badf4 Update src/app/page.tsx 2026-01-14 20:11:45 +00:00
7658c89e26 Update src/app/layout.tsx 2026-01-14 20:11:44 +00:00
2 changed files with 5 additions and 5 deletions

View File

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

View File

@@ -1,4 +1,4 @@
"use client" "use client";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import HeroLogo from '@/components/sections/hero/HeroLogo'; import HeroLogo from '@/components/sections/hero/HeroLogo';
@@ -113,8 +113,8 @@ export default function LandingPage() {
tag="Menu Highlights" tag="Menu Highlights"
products={[ products={[
{ {
id: "1", brand: "PAVARAGA", name: "Tropical Ice Tea", price: "$18.00", rating: 5, id: "1", brand: "PAVARAGA", name: "Tropical Acai Bowl", price: "$18.00", rating: 5,
reviewCount: "247", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_38BjcazLrwif0ixg9s4SVqUVz24/tmp/generate-a-cold-ice-tea-that-look-tropic-1768420422435-66cbd89b.jpg", imageAlt: "Tropical Ice Tea beverage" reviewCount: "247", imageSrc: "https://images.unsplash.com/photo-1590080876_1e5db6e3ea76?w=500&h=500&fit=crop", imageAlt: "Tropical Acai Bowl with fresh fruit"
}, },
{ {
id: "2", brand: "PAVARAGA", name: "Island Espresso Blend", price: "$6.50", rating: 5, id: "2", brand: "PAVARAGA", name: "Island Espresso Blend", price: "$6.50", rating: 5,
@@ -213,4 +213,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }