Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ed301ae078 | |||
| 48339e8ec0 | |||
| 92f5cddc01 | |||
| 1492058af8 | |||
| 8c51096d20 | |||
| 206f6d3fd5 | |||
| 7e9084ded3 | |||
| fda6b61a34 |
@@ -11,6 +11,8 @@ import HeroSplit from '@/components/sections/hero/HeroSplit';
|
|||||||
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
|
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
|
||||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||||
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
|
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
|
||||||
|
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
|
||||||
|
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||||
import { Award, Leaf, ShoppingBag, Star, Users, Utensils } from "lucide-react";
|
import { Award, Leaf, ShoppingBag, Star, Users, Utensils } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
@@ -32,6 +34,8 @@ export default function LandingPage() {
|
|||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Servicios", id: "servicios" },
|
{ name: "Servicios", id: "servicios" },
|
||||||
|
{ name: "Productos", id: "productos" },
|
||||||
|
{ name: "Mercado", id: "mercado" },
|
||||||
{ name: "Nosotros", id: "nosotros" },
|
{ name: "Nosotros", id: "nosotros" },
|
||||||
{ name: "Galería", id: "galeria" },
|
{ name: "Galería", id: "galeria" },
|
||||||
{ name: "Reseñas", id: "testimonios" },
|
{ name: "Reseñas", id: "testimonios" },
|
||||||
@@ -67,6 +71,40 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div id="productos" data-section="productos">
|
||||||
|
<ProductCardTwo
|
||||||
|
title="Nuestros Productos destacados"
|
||||||
|
description="Selección de lo mejor de nuestra región"
|
||||||
|
gridVariant="three-columns-all-equal-width"
|
||||||
|
animationType="slide-up"
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
products={[
|
||||||
|
{ id: "p1", brand: "Local", name: "Frutas de temporada", price: "$5", rating: 5, reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/fruits-basket-wooden-surface_1150-13175.jpg" },
|
||||||
|
{ id: "p2", brand: "Local", name: "Vegetales frescos", price: "$3", rating: 4, reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/fresh-vegetables-set-wooden-table_144627-26815.jpg" },
|
||||||
|
{ id: "p3", brand: "Local", name: "Pan artesanal", price: "$2", rating: 5, reviewCount: "200", imageSrc: "http://img.b2bpic.net/free-photo/fresh-baked-bread_144627-14227.jpg" }
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="mercado" data-section="mercado">
|
||||||
|
<FeatureCardSeven
|
||||||
|
title="Mercado en Línea"
|
||||||
|
description="Haz tus compras desde casa en cualquiera de nuestros 4 supermercados de la zona."
|
||||||
|
animationType="slide-up"
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
features={[
|
||||||
|
{
|
||||||
|
title: "Envío a Domicilio", description: "Recibe tus productos frescos directamente en la puerta de tu casa en Guanacaste.", imageSrc: "http://img.b2bpic.net/free-photo/delivery-man-holding-cardboard-box_23-2149361668.jpg"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Retiro en Tienda", description: "Realiza tu pedido en línea y recógelo en el supermercado más cercano de forma rápida.", imageSrc: "http://img.b2bpic.net/free-photo/woman-holding-paper-bags-with-groceries_23-2148281358.jpg"
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="nosotros" data-section="nosotros">
|
<div id="nosotros" data-section="nosotros">
|
||||||
<AboutMetric
|
<AboutMetric
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
@@ -167,6 +205,7 @@ export default function LandingPage() {
|
|||||||
{
|
{
|
||||||
title: "Navegación", items: [
|
title: "Navegación", items: [
|
||||||
{ label: "Servicios", href: "#servicios" },
|
{ label: "Servicios", href: "#servicios" },
|
||||||
|
{ label: "Productos", href: "#productos" },
|
||||||
{ label: "Nosotros", href: "#nosotros" },
|
{ label: "Nosotros", href: "#nosotros" },
|
||||||
{ label: "Contacto", href: "#contacto" },
|
{ label: "Contacto", href: "#contacto" },
|
||||||
],
|
],
|
||||||
|
|||||||
Reference in New Issue
Block a user