diff --git a/src/app/page.tsx b/src/app/page.tsx index 4579f23..55f6671 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -6,7 +6,7 @@ import ContactText from '@/components/sections/contact/ContactText'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import HeroOverlay from '@/components/sections/hero/HeroOverlay'; import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo'; -import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import ProductCardThree from '@/components/sections/product/ProductCardThree'; import TextAbout from '@/components/sections/about/TextAbout'; @@ -22,73 +22,32 @@ export default function LandingPage() { cardStyle="soft-shadow" primaryButtonStyle="gradient" secondaryButtonStyle="radial-glow" - headingFontWeight="medium" + headingFontWeight="semibold" >
@@ -99,58 +58,20 @@ export default function LandingPage() { gridVariant="four-items-2x2-equal-grid" useInvertedBackground={true} products={[ - { - id: "1", - name: "Michelada de la casa", - price: "$85", - imageSrc: "http://img.b2bpic.net/free-photo/alcoholic-long-cocktail-with-olives-glass-bar-table_627829-6460.jpg", - }, - { - id: "2", - name: "Tacos de suadero", - price: "$120", - imageSrc: "http://img.b2bpic.net/free-photo/woman-holding-taco-with-yellow-corn-tortilla_181624-29442.jpg", - }, - { - id: "3", - name: "Cheeseburger Urbana", - price: "$150", - imageSrc: "http://img.b2bpic.net/free-photo/burger-with-meat-white-fried-cheese_140725-2355.jpg", - }, - { - id: "4", - name: "Nachos del Barrio", - price: "$110", - imageSrc: "http://img.b2bpic.net/free-photo/mexican-nachos-tortilla-chips-with-black-beans-guacamole-tomato-jalapeno-wooden-table_123827-20488.jpg", - }, - { - id: "5", - name: "Alitas Buffalo", - price: "$135", - imageSrc: "http://img.b2bpic.net/free-photo/close-shot-fried-chicken-wings-long-white-tray_181624-1735.jpg", - }, - { - id: "6", - name: "Tostada de ceviche", - price: "$95", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-bowl-seafood-with-lime-avocado_181624-59141.jpg", - }, + { id: "1", name: "Michelada Especial", price: "$90", imageSrc: "http://img.b2bpic.net/free-photo/glass-beer-with-lime-slice-counter_144627-25121.jpg" }, + { id: "2", name: "Burger Urbana", price: "$160", imageSrc: "http://img.b2bpic.net/free-photo/delicious-burger-with-fresh-ingredients_23-2148944525.jpg" }, + { id: "3", name: "Tacos de la Calle", price: "$130", imageSrc: "http://img.b2bpic.net/free-photo/assorted-tacos-wooden-board_23-2148782782.jpg" }, + { id: "4", name: "Alitas Callejeras", price: "$140", imageSrc: "http://img.b2bpic.net/free-photo/chicken-wings-with-spicy-sauce-plate_23-2148943963.jpg" }, ]} - title="Lo mero bueno" - description="Directo a la mesa, sin rodeos." + title="El Menú Callejero" + description="Noche, comida y cheve. Lo que el barrio pide." />
@@ -160,24 +81,12 @@ export default function LandingPage() { textboxLayout="default" gridVariant="uniform-all-items-equal" useInvertedBackground={false} - title="Números que hablan por sí solos" - description="Calidad, sabor y cheve siempre fría." + title="Estadísticas de la Calle" + description="Donde las cosas suceden hasta tarde." metrics={[ - { - id: "1", - value: "20+", - description: "Variedades de cerveza", - }, - { - id: "2", - value: "100%", - description: "Sabor urbano", - }, - { - id: "3", - value: "3 AM", - description: "Hora de cierre", - }, + { id: "1", value: "198", description: "Número de la suerte" }, + { id: "2", value: "100%", description: "Vibra Urbana" }, + { id: "3", value: "3 AM", description: "Hora de cierre" }, ]} /> @@ -185,51 +94,22 @@ export default function LandingPage() {
); -} +} \ No newline at end of file