Update src/app/page.tsx

This commit is contained in:
2026-04-20 19:50:22 +00:00
parent a68c4c04ab
commit 63cbf84294

View File

@@ -9,7 +9,7 @@ import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSp
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
import { MapPin, Star, Utensils, MessageCircle } from "lucide-react";
import { MapPin, Star, Utensils } from "lucide-react";
export default function LandingPage() {
return (
@@ -71,12 +71,8 @@ export default function LandingPage() {
gridVariant="two-columns-alternating-heights"
useInvertedBackground={false}
products={[
{ id: "p1", name: "Camarão Imperial", price: "", imageSrc: "http://img.b2bpic.net/free-photo/delicious-seafood-lobster-high-view_23-2148708702.jpg" },
{ id: "p2", name: "Risoto de Frutos do Mar", price: "", imageSrc: "http://img.b2bpic.net/free-photo/stir-fried-spaghetti-seafood_1339-3427.jpg" },
{ id: "p3", name: "Lagosta Grelhada", price: "", imageSrc: "http://img.b2bpic.net/free-photo/penne-pasta-with-mussels-side-view_140725-9154.jpg" },
{ id: "p4", name: "Moqueca Carioca", price: "", imageSrc: "http://img.b2bpic.net/free-photo/baked-fish-with-shrimp-lemon-wedges_140725-3209.jpg" },
{ id: "p5", name: "Spaghetti ao Vongole", price: "", imageSrc: "http://img.b2bpic.net/free-photo/stir-fried-spaghetti-seafood_1339-3422.jpg" },
{ id: "p6", name: "Camarão ao Champagne", price: "", imageSrc: "http://img.b2bpic.net/free-photo/prawns-placed-small-plates_1232-986.jpg" },
{ id: "p1", name: "Camarão Imperial", price: "R$ 129,00", imageSrc: "http://img.b2bpic.net/free-photo/delicious-seafood-lobster-high-view_23-2148708702.jpg" },
{ id: "p2", name: "Risoto de Frutos do Mar", price: "R$ 98,00", imageSrc: "http://img.b2bpic.net/free-photo/stir-fried-spaghetti-seafood_1339-3427.jpg" },
]}
title="Nossas Especialidades"
description="Pratos preparados na hora para garantir frescor e qualidade absoluta."
@@ -91,10 +87,6 @@ export default function LandingPage() {
author="Daniela Machado"
avatars={[
{ src: "http://img.b2bpic.net/free-photo/young-happy-woman-her-boyfriend-reading-text-message-mobile-phone-while-sitting-dining-table_637285-10328.jpg", alt: "Taiane Antonelli" },
{ src: "http://img.b2bpic.net/free-photo/middle-age-friends-night-having-dinner_23-2149190962.jpg", alt: "Sâmia Freire" },
{ src: "http://img.b2bpic.net/free-photo/handsome-confident-stylish-hipster-lambersexual-modelsexy-modern-man-dressed-white-shirt-trousers-fashion-male-posing-street-near-embankment-europe-park-city-sunsetin-sunglasses_158538-22364.jpg", alt: "Daniela Machado" },
{ src: "http://img.b2bpic.net/free-photo/people-having-dinner-luxurious-restaurants_23-2151081914.jpg", alt: "Eduardo Diniz Machado" },
{ src: "http://img.b2bpic.net/free-photo/waitress-near-display-case-with-tartines_23-2147830513.jpg", alt: "Lara Dalla Nora" },
]}
ratingAnimation="blur-reveal"
avatarsAnimation="blur-reveal"
@@ -118,7 +110,7 @@ export default function LandingPage() {
columns={[
{ items: [{ label: "Sobre", href: "/sobre" }, { label: "Cardápio", href: "/cardapio" }, { label: "Contato", href: "/contato" }] },
{ items: [
{ label: "WhatsApp: 04833048808", href: "https://wa.me/04833048808" },
{ label: "WhatsApp: (48) 3304-8828", href: "https://wa.me/554833048828" },
{ label: "Instagram", href: "https://www.instagram.com/camaraocariocajurere/" }
] },
]}
@@ -128,4 +120,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}