Update src/app/page.tsx

This commit is contained in:
2026-05-11 15:16:28 +00:00
parent b14273af51
commit 94243a1d31

View File

@@ -44,7 +44,7 @@ export default function LandingPage() {
background={{ variant: "rotated-rays-animated" }}
title="Science-Based Nutrition for Sustainable Livestock"
description="Inovit delivers innovative feed additive solutions designed to improve animal health, optimize feed efficiency, and empower the future of farming."
buttons={[{ text: "Explore Our Products", href: "#products" }]}
buttons={[{ text: "Explore Our Products", href: "/products" }]}
carouselItems={[
{ id: "h1", imageSrc: "http://img.b2bpic.net/free-photo/long-shot-herd-sheep-eating-grass-pasture_23-2148214286.jpg", imageAlt: "sustainable farming livestock field" },
{ id: "h2", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-woman-feeding-sheep_23-2149535200.jpg", imageAlt: "organic animal feed texture" },
@@ -169,9 +169,9 @@ export default function LandingPage() {
},
{
title: "Products", items: [
{ label: "Poultry Additives", href: "#products" },
{ label: "Ruminant Additives", href: "#products" },
{ label: "Aquaculture", href: "#products" },
{ label: "Poultry Additives", href: "/products" },
{ label: "Ruminant Additives", href: "/products" },
{ label: "Aquaculture", href: "/products" },
],
},
{
@@ -188,4 +188,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}