Update src/app/products/page.tsx
This commit is contained in:
@@ -19,9 +19,7 @@ export default function ProductsPage() {
|
||||
];
|
||||
|
||||
const navButton = {
|
||||
text: "Dealer Inquiry",
|
||||
href: "/dealer-inquiry",
|
||||
};
|
||||
text: "Dealer Inquiry", href: "/dealer-inquiry"};
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
@@ -30,7 +28,7 @@ export default function ProductsPage() {
|
||||
borderRadius="pill"
|
||||
contentWidth="mediumSmall"
|
||||
sizing="mediumLarge"
|
||||
background="aurora"
|
||||
background="circleGradient"
|
||||
cardStyle="solid"
|
||||
primaryButtonStyle="primary-glow"
|
||||
secondaryButtonStyle="solid"
|
||||
@@ -51,32 +49,22 @@ export default function ProductsPage() {
|
||||
tag="Product Portfolio"
|
||||
tagIcon={Leaf}
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "aurora" }}
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
buttons={[
|
||||
{ text: "View Specifications", href: "#specifications" },
|
||||
{ text: "Request Sample", href: "/dealer-inquiry" },
|
||||
]}
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-hands-holding-bunch-white-beans_114579-76881.jpg?_wi=2",
|
||||
imageAlt: "High quality soybean seeds",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-hands-holding-bunch-white-beans_114579-76881.jpg", imageAlt: "High quality soybean seeds"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/selective-focus-shot-green-plant-field_181624-21437.jpg?_wi=2",
|
||||
imageAlt: "Soybean field at full growth",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/selective-focus-shot-green-plant-field_181624-21437.jpg", imageAlt: "Soybean field at full growth"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-wearing-flannel-shirt-picking-corn-beautiful-cornfield-sunset_181624-55690.jpg?_wi=2",
|
||||
imageAlt: "Mature soybean crop ready for harvest",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-wearing-flannel-shirt-picking-corn-beautiful-cornfield-sunset_181624-55690.jpg", imageAlt: "Mature soybean crop ready for harvest"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-view-thumb-up-man-field_23-2148233409.jpg?_wi=2",
|
||||
imageAlt: "Quality assurance of harvested crop",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-view-thumb-up-man-field_23-2148233409.jpg", imageAlt: "Quality assurance of harvested crop"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/seedlings-planting-tray_1150-23158.jpg?_wi=2",
|
||||
imageAlt: "Germination and seedling development",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/seedlings-planting-tray_1150-23158.jpg", imageAlt: "Germination and seedling development"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -88,31 +76,19 @@ export default function ProductsPage() {
|
||||
tag="Product Features"
|
||||
tagIcon={CheckCircle}
|
||||
tagAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/research-worker-laboratory-breeding-new-kinds-vegetation_273609-13437.jpg?_wi=3"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/research-worker-laboratory-breeding-new-kinds-vegetation_273609-13437.jpg"
|
||||
imageAlt="Product testing and quality verification"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="left"
|
||||
accordionItems={[
|
||||
{
|
||||
id: "1",
|
||||
title: "High Yield Varieties",
|
||||
content: "Designed for maximum productivity with proven yields in Maharashtra's farming conditions. These varieties combine robust plant architecture with disease resistance.",
|
||||
},
|
||||
id: "1", title: "High Yield Varieties", content: "Designed for maximum productivity with proven yields in Maharashtra's farming conditions. These varieties combine robust plant architecture with disease resistance."},
|
||||
{
|
||||
id: "2",
|
||||
title: "Early Maturity Options",
|
||||
content: "Perfect for farmers looking to complete their harvest early in the season. These varieties mature 5-7 days earlier while maintaining excellent grain quality.",
|
||||
},
|
||||
id: "2", title: "Early Maturity Options", content: "Perfect for farmers looking to complete their harvest early in the season. These varieties mature 5-7 days earlier while maintaining excellent grain quality."},
|
||||
{
|
||||
id: "3",
|
||||
title: "Disease Resistant Strains",
|
||||
content: "Bred for resistance to common soybean diseases prevalent in Maharashtra. Reduces the need for chemical interventions.",
|
||||
},
|
||||
id: "3", title: "Disease Resistant Strains", content: "Bred for resistance to common soybean diseases prevalent in Maharashtra. Reduces the need for chemical interventions."},
|
||||
{
|
||||
id: "4",
|
||||
title: "Organic Farming Compatible",
|
||||
content: "Suitable for organic farming practices. These varieties perform excellently under natural farming conditions with minimal external inputs.",
|
||||
},
|
||||
id: "4", title: "Organic Farming Compatible", content: "Suitable for organic farming practices. These varieties perform excellently under natural farming conditions with minimal external inputs."},
|
||||
]}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
@@ -145,9 +121,7 @@ export default function ProductsPage() {
|
||||
{ icon: Mail, href: "mailto:info@renai-seeds.com", ariaLabel: "Email us" },
|
||||
{
|
||||
icon: MapPin,
|
||||
href: "https://maps.google.com/?q=Plot+D49+MIDC+Latur+Maharashtra",
|
||||
ariaLabel: "Our location",
|
||||
},
|
||||
href: "https://maps.google.com/?q=Plot+D49+MIDC+Latur+Maharashtra", ariaLabel: "Our location"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user