Compare commits
9 Commits
version_7
...
version_11
| Author | SHA1 | Date | |
|---|---|---|---|
| 280d5338a8 | |||
| 99b64df60e | |||
| 0ecee0287f | |||
| a90449e563 | |||
| 2ba4c0cdda | |||
| b7491f9f8e | |||
| 2811ea1eda | |||
| ff48c1aa03 | |||
| 84fde9367f |
@@ -9,10 +9,9 @@ import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
|
||||
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
|
||||
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
||||
import { Star } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -79,7 +78,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Hand Selection", description: "Harvested by hand to preserve the integrity of the fruit.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ca3ldHDTnW2aKKkElhFZ5QeQPp/uploaded-1776914762475-600bbyeq.jpg?_wi=1"},
|
||||
title: "Hand Selection", description: "Every single olive is harvested by hand, ensuring that only the most perfect fruit is selected for our cold-pressed oil, maintaining the highest quality and flavor profile.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ca3ldHDTnW2aKKkElhFZ5QeQPp/uploaded-1776915095635-yqsy414w.jpg"},
|
||||
{
|
||||
title: "Industrial Processing", description: "Our olive oils are processed using precision equipment from a leading metal manufacturer to ensure maximum consistency.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ca3ldHDTnW2aKKkElhFZ5QeQPp/uploaded-1776914762475-j17yg4ti.jpg?_wi=1"},
|
||||
{
|
||||
@@ -91,19 +90,17 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardTwo
|
||||
<ProductCardOne
|
||||
textboxLayout="default"
|
||||
gridVariant="bento-grid"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{ id: "p1", brand: "IVANIŠEVIĆ", name: "Heritage Gold", price: "€35.00", rating: 5, reviewCount: "128", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ca3ldHDTnW2aKKkElhFZ5QeQPp/uploaded-1776914762475-600bbyeq.jpg?_wi=2" },
|
||||
{ id: "p2", brand: "IVANIŠEVIVIĆ", name: "Early Harvest", price: "€42.00", rating: 5, reviewCount: "92", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ca3ldHDTnW2aKKkElhFZ5QeQPp/uploaded-1776914762475-j17yg4ti.jpg?_wi=2" },
|
||||
{ id: "p3", brand: "IVANIŠEVIĆ", name: "Dalmatian Select", price: "€28.00", rating: 4, reviewCount: "215", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ca3ldHDTnW2aKKkElhFZ5QeQPp/uploaded-1776914762475-tchq7awh.jpg?_wi=2" },
|
||||
{ id: "p4", brand: "IVANIŠEVIĆ", name: "Gift Ensemble", price: "€85.00", rating: 5, reviewCount: "45", imageSrc: "http://img.b2bpic.net/free-photo/woman-wrapping-christmas-gift-while-sitting-carped-living-room_158595-7276.jpg" },
|
||||
{ id: "p5", brand: "IVANIŠEVIĆ", name: "Reserve Limited", price: "€55.00", rating: 5, reviewCount: "32", imageSrc: "http://img.b2bpic.net/free-photo/dark-plates-with-pasta-eggs-with-beans-dark-background_23-2148340392.jpg" },
|
||||
{ id: "p6", brand: "IVANIŠEVIĆ", name: "Infused Selection", price: "€32.00", rating: 4, reviewCount: "78", imageSrc: "http://img.b2bpic.net/free-photo/cosmetic-bottle-with-luxurious-art-nouveau-inspired-sun-relief-background_23-2151420726.jpg" },
|
||||
{ id: "p1", name: "Heritage Gold", price: "€35.00", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ca3ldHDTnW2aKKkElhFZ5QeQPp/uploaded-1776915319318-bodyzhie.jpg", onProductClick: () => window.location.href = "#contact" },
|
||||
{ id: "p2", name: "Early Harvest", price: "€42.00", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ca3ldHDTnW2aKKkElhFZ5QeQPp/uploaded-1776914762475-j17yg4ti.jpg?_wi=2", onProductClick: () => window.location.href = "#contact" },
|
||||
{ id: "p3", name: "Dalmatian Select", price: "€28.00", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ca3ldHDTnW2aKKkElhFZ5QeQPp/uploaded-1776914762475-tchq7awh.jpg?_wi=2", onProductClick: () => window.location.href = "#contact" },
|
||||
]}
|
||||
buttons={[{ text: "Order Now", href: "#contact" }]}
|
||||
title="Our Reserve Collection"
|
||||
description="Experience the liquid gold of Dalmatia with our limited-batch organic harvest."
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user