Merge version_1 into main #2
229
src/app/page.tsx
229
src/app/page.tsx
@@ -31,25 +31,13 @@ export default function LandingPage() {
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "home",
|
||||
href: "/",
|
||||
},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "Products",
|
||||
id: "products",
|
||||
href: "#products",
|
||||
},
|
||||
name: "Products", id: "#products"},
|
||||
{
|
||||
name: "About Us",
|
||||
id: "about",
|
||||
href: "#about",
|
||||
},
|
||||
name: "About Us", id: "#about"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
href: "#contact",
|
||||
},
|
||||
name: "Contact", id: "#contact"}
|
||||
]}
|
||||
brandName="Ertnes Kjøtt"
|
||||
bottomLeftText="Moss, Norway"
|
||||
@@ -61,49 +49,35 @@ export default function LandingPage() {
|
||||
<HeroBillboardTestimonial
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
variant: "plain"
|
||||
}}
|
||||
title="Ertnes Kjøtt: Quality Meat from Moss"
|
||||
description="For generations, we have proudly delivered the finest cuts, sourced with care and prepared with passion. Experience the tradition of exceptional taste."
|
||||
testimonials={[
|
||||
{
|
||||
name: "Astrid Olsen",
|
||||
handle: "@astrido",
|
||||
testimonial: "The quality from Ertnes Kjøtt is simply unmatched. Their beef is always tender and full of flavor. A true taste of Norway!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-man-holding-food_23-2150168128.jpg?_wi=1",
|
||||
name: "Astrid Olsen", handle: "@astrido", testimonial: "The quality from Ertnes Kjøtt is simply unmatched. Their beef is always tender and full of flavor. A true taste of Norway!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-man-holding-food_23-2150168128.jpg"
|
||||
},
|
||||
{
|
||||
name: "Bjørn Hansen",
|
||||
handle: "@bjornh",
|
||||
testimonial: "I've been a loyal customer for years. Ertnes Kjøtt delivers outstanding lamb and pork every time. Highly recommended!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-enjoying-mexican-barbecue_23-2151000294.jpg?_wi=1",
|
||||
name: "Bjørn Hansen", handle: "@bjornh", testimonial: "I've been a loyal customer for years. Ertnes Kjøtt delivers outstanding lamb and pork every time. Highly recommended!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-enjoying-mexican-barbecue_23-2151000294.jpg"
|
||||
},
|
||||
{
|
||||
name: "Lise Jensen",
|
||||
handle: "@lisej",
|
||||
testimonial: "Their commitment to local sourcing and ethical practices shines through in every product. Delicious and responsible!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-jeweler-working-shop_23-2150914243.jpg?_wi=1",
|
||||
name: "Lise Jensen", handle: "@lisej", testimonial: "Their commitment to local sourcing and ethical practices shines through in every product. Delicious and responsible!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-jeweler-working-shop_23-2150914243.jpg"
|
||||
},
|
||||
{
|
||||
name: "Svein Erikson",
|
||||
handle: "@sveine",
|
||||
testimonial: "Ertnes Kjøtt is our go-to for all special occasions. The quality elevates every meal, and the service is always top-notch.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-friends-reunion-with-delicious-food_23-2149073105.jpg?_wi=1",
|
||||
},
|
||||
name: "Svein Erikson", handle: "@sveine", testimonial: "Ertnes Kjøtt is our go-to for all special occasions. The quality elevates every meal, and the service is always top-notch.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-friends-reunion-with-delicious-food_23-2149073105.jpg"
|
||||
}
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Explore Our Products",
|
||||
href: "#products",
|
||||
text: "Explore Our Products", href: "#products"
|
||||
},
|
||||
{
|
||||
text: "Learn Our Story",
|
||||
href: "#about",
|
||||
},
|
||||
text: "Learn Our Story", href: "#about"
|
||||
}
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/fresh-raw-cubed-meat-with-rosemary-sea-salt_84443-72388.jpg"
|
||||
imageAlt="Premium selection of meat cuts"
|
||||
@@ -117,24 +91,20 @@ export default function LandingPage() {
|
||||
metrics={[
|
||||
{
|
||||
icon: History,
|
||||
label: "Years of Tradition",
|
||||
value: "75+",
|
||||
label: "Years of Tradition", value: "75+"
|
||||
},
|
||||
{
|
||||
icon: Feather,
|
||||
label: "Local Sourcing",
|
||||
value: "90%",
|
||||
label: "Local Sourcing", value: "90%"
|
||||
},
|
||||
{
|
||||
icon: Award,
|
||||
label: "Quality Standard",
|
||||
value: "Certified",
|
||||
label: "Quality Standard", value: "Certified"
|
||||
},
|
||||
{
|
||||
icon: Heart,
|
||||
label: "Satisfied Customers",
|
||||
value: "Thousands",
|
||||
},
|
||||
label: "Satisfied Customers", value: "Thousands"
|
||||
}
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
@@ -147,65 +117,49 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Local Sourcing",
|
||||
description: "We partner with trusted local farms in Norway, ensuring our animals are raised ethically and sustainably, contributing to a vibrant community.",
|
||||
icon: Home,
|
||||
title: "Local Sourcing", description: "We partner with trusted local farms in Norway, ensuring our animals are raised ethically and sustainably, contributing to a vibrant community.", icon: Home,
|
||||
mediaItems: [
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-photo/grass-field-with-cows-distant-sunny-day-with-trees-blue-sky_181624-2660.jpg",
|
||||
src: "http://img.b2bpic.net/free-photo/grass-field-with-cows-distant-sunny-day-with-trees-blue-sky_181624-2660.jpg"
|
||||
},
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-photo/grass-field-with-cows-distant-sunny-day-with-trees-blue-sky_181624-2660.jpg",
|
||||
},
|
||||
],
|
||||
src: "http://img.b2bpic.net/free-photo/grass-field-with-cows-distant-sunny-day-with-trees-blue-sky_181624-2660.jpg"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Expert Butchers",
|
||||
description: "Our skilled butchers employ time-honored techniques to prepare each cut with precision and care, preserving the meat's natural texture and flavor.",
|
||||
icon: Award,
|
||||
title: "Expert Butchers", description: "Our skilled butchers employ time-honored techniques to prepare each cut with precision and care, preserving the meat's natural texture and flavor.", icon: Award,
|
||||
mediaItems: [
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-photo/barber-talking-with-client-reception-desk_23-2148181957.jpg",
|
||||
src: "http://img.b2bpic.net/free-photo/barber-talking-with-client-reception-desk_23-2148181957.jpg"
|
||||
},
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-photo/barber-talking-with-client-reception-desk_23-2148181957.jpg",
|
||||
},
|
||||
],
|
||||
src: "http://img.b2bpic.net/free-photo/barber-talking-with-client-reception-desk_23-2148181957.jpg"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Unrivaled Freshness",
|
||||
description: "With a short supply chain from farm to table, we guarantee exceptional freshness, allowing you to taste the quality in every bite.",
|
||||
icon: Sparkles,
|
||||
title: "Unrivaled Freshness", description: "With a short supply chain from farm to table, we guarantee exceptional freshness, allowing you to taste the quality in every bite.", icon: Sparkles,
|
||||
mediaItems: [
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-photo/fresh-uncooked-pork-chops-wooden-table_123827-34467.jpg",
|
||||
src: "http://img.b2bpic.net/free-photo/fresh-uncooked-pork-chops-wooden-table_123827-34467.jpg"
|
||||
},
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-photo/fresh-uncooked-pork-chops-wooden-table_123827-34467.jpg",
|
||||
},
|
||||
],
|
||||
src: "http://img.b2bpic.net/free-photo/fresh-uncooked-pork-chops-wooden-table_123827-34467.jpg"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Sustainable Practices",
|
||||
description: "Ertnes Kjøtt is committed to environmentally friendly operations, from sourcing to packaging, minimizing our footprint for a healthier planet.",
|
||||
icon: Feather,
|
||||
title: "Sustainable Practices", description: "Ertnes Kjøtt is committed to environmentally friendly operations, from sourcing to packaging, minimizing our footprint for a healthier planet.", icon: Feather,
|
||||
mediaItems: [
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-vector/flat-arbor-day-horizontal-banners-set_23-2149315389.jpg",
|
||||
src: "http://img.b2bpic.net/free-vector/flat-arbor-day-horizontal-banners-set_23-2149315389.jpg"
|
||||
},
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-vector/flat-arbor-day-horizontal-banners-set_23-2149315389.jpg",
|
||||
},
|
||||
],
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-vector/flat-arbor-day-horizontal-banners-set_23-2149315389.jpg"
|
||||
}
|
||||
]
|
||||
}
|
||||
]}
|
||||
title="The Ertnes Kjøtt Difference"
|
||||
description="What sets our meat apart: unwavering commitment to quality, sustainable practices, and traditional craftsmanship perfected over generations in Moss."
|
||||
@@ -220,33 +174,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "beef-fillet",
|
||||
name: "Norwegian Beef Fillet",
|
||||
price: "599 NOK/kg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fresh-raw-beef-steak-dark-surface_1150-44368.jpg",
|
||||
imageAlt: "Norwegian Beef Fillet",
|
||||
id: "beef-fillet", name: "Norwegian Beef Fillet", price: "599 NOK/kg", imageSrc: "http://img.b2bpic.net/free-photo/fresh-raw-beef-steak-dark-surface_1150-44368.jpg", imageAlt: "Norwegian Beef Fillet"
|
||||
},
|
||||
{
|
||||
id: "lamb-chops",
|
||||
name: "Premium Lamb Chops",
|
||||
price: "449 NOK/kg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wooden-board-with-cooked-meat_23-2148599790.jpg",
|
||||
imageAlt: "Premium Lamb Chops",
|
||||
id: "lamb-chops", name: "Premium Lamb Chops", price: "449 NOK/kg", imageSrc: "http://img.b2bpic.net/free-photo/wooden-board-with-cooked-meat_23-2148599790.jpg", imageAlt: "Premium Lamb Chops"
|
||||
},
|
||||
{
|
||||
id: "pork-belly",
|
||||
name: "Savory Pork Belly",
|
||||
price: "299 NOK/kg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/slice-pork_1339-579.jpg",
|
||||
imageAlt: "Savory Pork Belly",
|
||||
id: "pork-belly", name: "Savory Pork Belly", price: "299 NOK/kg", imageSrc: "http://img.b2bpic.net/free-photo/slice-pork_1339-579.jpg", imageAlt: "Savory Pork Belly"
|
||||
},
|
||||
{
|
||||
id: "sausages",
|
||||
name: "Artisan Sausages",
|
||||
price: "189 NOK/pack",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/ingredients-pesto-chiabatta-bread_1220-4228.jpg",
|
||||
imageAlt: "Artisan Sausages",
|
||||
},
|
||||
id: "sausages", name: "Artisan Sausages", price: "189 NOK/pack", imageSrc: "http://img.b2bpic.net/free-photo/ingredients-pesto-chiabatta-bread_1220-4228.jpg", imageAlt: "Artisan Sausages"
|
||||
}
|
||||
]}
|
||||
title="Our Premium Selection"
|
||||
description="Discover a range of high-quality meats, from tender beef to flavorful lamb and savory pork, perfect for any occasion."
|
||||
@@ -258,29 +196,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Astrid Olsen",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-man-holding-food_23-2150168128.jpg?_wi=2",
|
||||
imageAlt: "Astrid Olsen profile picture",
|
||||
id: "1", name: "Astrid Olsen", imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-man-holding-food_23-2150168128.jpg", imageAlt: "Astrid Olsen profile picture"
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Bjørn Hansen",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-enjoying-mexican-barbecue_23-2151000294.jpg?_wi=2",
|
||||
imageAlt: "Bjørn Hansen profile picture",
|
||||
id: "2", name: "Bjørn Hansen", imageSrc: "http://img.b2bpic.net/free-photo/people-enjoying-mexican-barbecue_23-2151000294.jpg", imageAlt: "Bjørn Hansen profile picture"
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Lise Jensen",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-jeweler-working-shop_23-2150914243.jpg?_wi=2",
|
||||
imageAlt: "Lise Jensen profile picture",
|
||||
id: "3", name: "Lise Jensen", imageSrc: "http://img.b2bpic.net/free-photo/male-jeweler-working-shop_23-2150914243.jpg", imageAlt: "Lise Jensen profile picture"
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Svein Erikson",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-friends-reunion-with-delicious-food_23-2149073105.jpg?_wi=2",
|
||||
imageAlt: "Svein Erikson profile picture",
|
||||
},
|
||||
id: "4", name: "Svein Erikson", imageSrc: "http://img.b2bpic.net/free-photo/close-up-friends-reunion-with-delicious-food_23-2149073105.jpg", imageAlt: "Svein Erikson profile picture"
|
||||
}
|
||||
]}
|
||||
cardTitle="What Our Customers Say"
|
||||
cardTag="Trusted Quality"
|
||||
@@ -292,7 +218,7 @@ export default function LandingPage() {
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
variant: "plain"
|
||||
}}
|
||||
tag="Connect With Us"
|
||||
title="Visit Our Store or Get in Touch"
|
||||
@@ -309,52 +235,41 @@ export default function LandingPage() {
|
||||
imageAlt="Exterior of Ertnes Kjøtt butcher shop in Moss, Norway"
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links",
|
||||
items: [
|
||||
title: "Quick Links", items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
label: "Home", href: "/"
|
||||
},
|
||||
{
|
||||
label: "Products",
|
||||
href: "#products",
|
||||
label: "Products", href: "#products"
|
||||
},
|
||||
{
|
||||
label: "About Us",
|
||||
href: "#about",
|
||||
label: "About Us", href: "#about"
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
],
|
||||
label: "Contact", href: "#contact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
title: "Legal", items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
label: "Privacy Policy", href: "#"
|
||||
},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
label: "Terms of Service", href: "#"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Connect",
|
||||
items: [
|
||||
title: "Connect", items: [
|
||||
{
|
||||
label: "Facebook",
|
||||
href: "https://facebook.com/ertneskjott",
|
||||
label: "Facebook", href: "https://facebook.com/ertneskjott"
|
||||
},
|
||||
{
|
||||
label: "Instagram",
|
||||
href: "https://instagram.com/ertneskjott",
|
||||
},
|
||||
],
|
||||
},
|
||||
label: "Instagram", href: "https://instagram.com/ertneskjott"
|
||||
}
|
||||
]
|
||||
}
|
||||
]}
|
||||
logoText="Ertnes Kjøtt"
|
||||
copyrightText="© 2024 | Ertnes Kjøtt. All rights reserved."
|
||||
|
||||
Reference in New Issue
Block a user