Merge version_1 into main #1
464
src/app/page.tsx
464
src/app/page.tsx
@@ -17,344 +17,154 @@ import { CheckCircle, TrendingUp, Zap } from "lucide-react";
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-shift"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="pill"
|
||||
contentWidth="smallMedium"
|
||||
sizing="largeSmallSizeLargeTitles"
|
||||
background="none"
|
||||
cardStyle="inset"
|
||||
primaryButtonStyle="primary-glow"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="semibold"
|
||||
defaultButtonVariant="text-shift"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="pill"
|
||||
contentWidth="smallMedium"
|
||||
sizing="largeSmallSizeLargeTitles"
|
||||
background="none"
|
||||
cardStyle="inset"
|
||||
primaryButtonStyle="primary-glow"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Solutions",
|
||||
id: "features",
|
||||
},
|
||||
{
|
||||
name: "Products",
|
||||
id: "products",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
]}
|
||||
brandName="Standard Automation"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Solutions", id: "features" },
|
||||
{ name: "Products", id: "products" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="Standard Automation"
|
||||
button={{ text: "Contact Us", href: "#contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardRotatedCarousel
|
||||
background={{
|
||||
variant: "rotated-rays-animated",
|
||||
}}
|
||||
title="Standard Automation: Future-Ready Agriculture"
|
||||
description="Leading providers of high-performance egg grading, printing, candling, and advanced livestock automation solutions."
|
||||
buttons={[
|
||||
{
|
||||
text: "Explore Solutions",
|
||||
href: "#products",
|
||||
},
|
||||
]}
|
||||
carouselItems={[
|
||||
{
|
||||
id: "1",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smart-robotic-farmers-concept-robot-farmers-agriculture-technology-farm-automation_35913-2601.jpg",
|
||||
imageAlt: "Egg Grading Conveyor",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-glazed-donuts-factory_23-2150757589.jpg",
|
||||
imageAlt: "Egg Printing Tech",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-conveyor-line-s-equipment-making-little-identical-cakes-from-raw-dough-they-lie-black-dish-conveyor-line-bakery_7502-5867.jpg",
|
||||
imageAlt: "Egg Candling System",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-bull-standing-barn_23-2147923922.jpg",
|
||||
imageAlt: "Pig Farm Automation",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-scientist-with-seeds_23-2148918075.jpg",
|
||||
imageAlt: "Conveyor Engineering",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/photorealistic-scene-pig-farm-with-animals_23-2151462323.jpg",
|
||||
imageAlt: "Management Interface",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardRotatedCarousel
|
||||
background={{ variant: "rotated-rays-animated" }}
|
||||
title="Standard Automation: Future-Ready Agriculture"
|
||||
description="Leading providers of high-performance egg grading, printing, candling, and advanced livestock automation solutions."
|
||||
buttons={[{ text: "Explore Solutions", href: "#products" }]}
|
||||
carouselItems={[
|
||||
{ id: "1", imageSrc: "http://img.b2bpic.net/free-photo/smart-robotic-farmers-concept-robot-farmers-agriculture-technology-farm-automation_35913-2601.jpg", imageAlt: "Egg Grading Conveyor" },
|
||||
{ id: "2", imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-glazed-donuts-factory_23-2150757589.jpg", imageAlt: "Egg Printing Tech" },
|
||||
{ id: "3", imageSrc: "http://img.b2bpic.net/free-photo/close-up-conveyor-line-s-equipment-making-little-identical-cakes-from-raw-dough-they-lie-black-dish-conveyor-line-bakery_7502-5867.jpg", imageAlt: "Egg Candling System" },
|
||||
{ id: "4", imageSrc: "http://img.b2bpic.net/free-photo/side-view-bull-standing-barn_23-2147923922.jpg", imageAlt: "Pig Farm Automation" },
|
||||
{ id: "5", imageSrc: "http://img.b2bpic.net/free-photo/close-up-scientist-with-seeds_23-2148918075.jpg", imageAlt: "Conveyor Engineering" },
|
||||
{ id: "6", imageSrc: "http://img.b2bpic.net/free-photo/photorealistic-scene-pig-farm-with-animals_23-2151462323.jpg", imageAlt: "Management Interface" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<TextAbout
|
||||
useInvertedBackground={false}
|
||||
title="Modernizing Agricultural Efficiency"
|
||||
buttons={[
|
||||
{
|
||||
text: "Learn Our Vision",
|
||||
href: "#",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="about" data-section="about">
|
||||
<TextAbout
|
||||
useInvertedBackground={false}
|
||||
title="Modernizing Agricultural Efficiency"
|
||||
buttons={[{ text: "Learn Our Vision", href: "#" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardSixteen
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
negativeCard={{
|
||||
items: [
|
||||
"Manual grading errors",
|
||||
"Production bottlenecking",
|
||||
"High operational downtime",
|
||||
],
|
||||
}}
|
||||
positiveCard={{
|
||||
items: [
|
||||
"Precision automated sorting",
|
||||
"High-speed conveyor flow",
|
||||
"Real-time performance analytics",
|
||||
],
|
||||
}}
|
||||
title="Unmatched Performance Metrics"
|
||||
description="Our solutions are engineered to minimize waste and maximize output."
|
||||
/>
|
||||
</div>
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardSixteen
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
negativeCard={{ items: ["Manual grading errors", "Production bottlenecking", "High operational downtime"] }}
|
||||
positiveCard={{ items: ["Precision automated sorting", "High-speed conveyor flow", "Real-time performance analytics"] }}
|
||||
title="Unmatched Performance Metrics"
|
||||
description="Our solutions are engineered to minimize waste and maximize output."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="bento-grid"
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "99.8%",
|
||||
title: "Accuracy",
|
||||
description: "Sorting precision rate",
|
||||
icon: CheckCircle,
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "24/7",
|
||||
title: "Uptime",
|
||||
description: "Reliable machine operation",
|
||||
icon: Zap,
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
value: "50%",
|
||||
title: "Growth",
|
||||
description: "Average production increase",
|
||||
icon: TrendingUp,
|
||||
},
|
||||
]}
|
||||
title="Proven Efficiency"
|
||||
description="Tangible results for your daily operations."
|
||||
/>
|
||||
</div>
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="bento-grid"
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{ id: "m1", value: "99.8%", title: "Accuracy", description: "Sorting precision rate", icon: CheckCircle },
|
||||
{ id: "m2", value: "24/7", title: "Uptime", description: "Reliable machine operation", icon: Zap },
|
||||
{ id: "m3", value: "50%", title: "Growth", description: "Average production increase", icon: TrendingUp },
|
||||
]}
|
||||
title="Proven Efficiency"
|
||||
description="Tangible results for your daily operations."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardFour
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Industrial Egg Grader",
|
||||
price: "Custom",
|
||||
variant: "Standard",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-farmer-taking-care-his-business_329181-15980.jpg",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Smart Egg Printer",
|
||||
price: "Custom",
|
||||
variant: "High-Speed",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-eggs-easter-with-blue-paint_23-2148435216.jpg",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Candling Inspection Unit",
|
||||
price: "Custom",
|
||||
variant: "Precision",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/copy-space-egg-support-with-purple-paint_23-2148451496.jpg",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Smart Feeder System",
|
||||
price: "Custom",
|
||||
variant: "Livestock",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-middle-aged-farmer-standing-cow-farm-using-tablet_342744-878.jpg",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Industrial Weighing Scale",
|
||||
price: "Custom",
|
||||
variant: "Heavy-Duty",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/microgreen-corundum-coriander-sprouts-male-hands-raw-sprouts-microgreens-healthy-eating-concept-man-packs-boxes_1157-42099.jpg",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Automation Control Unit",
|
||||
price: "Custom",
|
||||
variant: "Smart-Logic",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-electrician-checks-control-cabinet-blue-light-electrical-inspection_169016-71036.jpg",
|
||||
},
|
||||
]}
|
||||
title="Agricultural Machinery Catalog"
|
||||
description="Innovative hardware for grading, printing, and farming."
|
||||
/>
|
||||
</div>
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardFour
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{ id: "p1", name: "Industrial Egg Grader", price: "Custom", variant: "Standard", imageSrc: "http://img.b2bpic.net/free-photo/young-farmer-taking-care-his-business_329181-15980.jpg" },
|
||||
{ id: "p2", name: "Smart Egg Printer", price: "Custom", variant: "High-Speed", imageSrc: "http://img.b2bpic.net/free-photo/top-view-eggs-easter-with-blue-paint_23-2148435216.jpg" },
|
||||
{ id: "p3", name: "Candling Inspection Unit", price: "Custom", variant: "Precision", imageSrc: "http://img.b2bpic.net/free-photo/copy-space-egg-support-with-purple-paint_23-2148451496.jpg" },
|
||||
{ id: "p4", name: "Smart Feeder System", price: "Custom", variant: "Livestock", imageSrc: "http://img.b2bpic.net/free-photo/portrait-middle-aged-farmer-standing-cow-farm-using-tablet_342744-878.jpg" },
|
||||
{ id: "p5", name: "Industrial Weighing Scale", price: "Custom", variant: "Heavy-Duty", imageSrc: "http://img.b2bpic.net/free-photo/microgreen-corundum-coriander-sprouts-male-hands-raw-sprouts-microgreens-healthy-eating-concept-man-packs-boxes_1157-42099.jpg" },
|
||||
{ id: "p6", name: "Automation Control Unit", price: "Custom", variant: "Smart-Logic", imageSrc: "http://img.b2bpic.net/free-photo/female-electrician-checks-control-cabinet-blue-light-electrical-inspection_169016-71036.jpg" },
|
||||
]}
|
||||
title="Agricultural Machinery Catalog"
|
||||
description="Innovative hardware for grading, printing, and farming."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardSix
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "John Doe",
|
||||
handle: "@jdoe_farms",
|
||||
testimonial: "Increased our egg yield significantly.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-farmer-using-digital-device_23-2149140416.jpg",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Sarah Smith",
|
||||
handle: "@smith_poultry",
|
||||
testimonial: "Excellent precision equipment.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/senior-businessman-with-arms-crossed-outside-modern-office-building_1139-1074.jpg",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Mike Brown",
|
||||
handle: "@mbrown_livestock",
|
||||
testimonial: "Robust engineering for pig farms.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-girl-holding-tablet_23-2148617241.jpg",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
name: "Alex Lee",
|
||||
handle: "@alee_engineering",
|
||||
testimonial: "Incredible production gains.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/engineer-oversees-assembly-tools-tablet-industry-plant-surrounded-by-metal-steel-machinery_482257-135546.jpg",
|
||||
},
|
||||
{
|
||||
id: "t5",
|
||||
name: "Pat Wilson",
|
||||
handle: "@pwilson_eggs",
|
||||
testimonial: "Seamless integration process.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/photorealistic-scene-poultry-farm-with-people-chickens_23-2151462303.jpg",
|
||||
},
|
||||
]}
|
||||
title="Trusted by Farm Leaders"
|
||||
description="What our partners have to say about Standard Automation systems."
|
||||
/>
|
||||
</div>
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardSix
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{ id: "t1", name: "John Doe", handle: "@jdoe_farms", testimonial: "Increased our egg yield significantly.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-farmer-using-digital-device_23-2149140416.jpg" },
|
||||
{ id: "t2", name: "Sarah Smith", handle: "@smith_poultry", testimonial: "Excellent precision equipment.", imageSrc: "http://img.b2bpic.net/free-photo/senior-businessman-with-arms-crossed-outside-modern-office-building_1139-1074.jpg" },
|
||||
{ id: "t3", name: "Mike Brown", handle: "@mbrown_livestock", testimonial: "Robust engineering for pig farms.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-girl-holding-tablet_23-2148617241.jpg" },
|
||||
{ id: "t4", name: "Alex Lee", handle: "@alee_engineering", testimonial: "Incredible production gains.", imageSrc: "http://img.b2bpic.net/free-photo/engineer-oversees-assembly-tools-tablet-industry-plant-surrounded-by-metal-steel-machinery_482257-135546.jpg" },
|
||||
{ id: "t5", name: "Pat Wilson", handle: "@pwilson_eggs", testimonial: "Seamless integration process.", imageSrc: "http://img.b2bpic.net/free-photo/photorealistic-scene-poultry-farm-with-people-chickens_23-2151462303.jpg" },
|
||||
]}
|
||||
title="Trusted by Farm Leaders"
|
||||
description="What our partners have to say about Standard Automation systems."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitText
|
||||
useInvertedBackground={true}
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Do you offer maintenance?",
|
||||
content: "Yes, we provide 24/7 technical support.",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Can you customize machines?",
|
||||
content: "Absolutely, we tailor systems to your farm size.",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "How is delivery arranged?",
|
||||
content: "Global shipping for all agricultural hardware.",
|
||||
},
|
||||
]}
|
||||
sideTitle="Expert Answers"
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitText
|
||||
useInvertedBackground={true}
|
||||
faqs={[
|
||||
{ id: "1", title: "Do you offer maintenance?", content: "Yes, we provide 24/7 technical support." },
|
||||
{ id: "2", title: "Can you customize machines?", content: "Absolutely, we tailor systems to your farm size." },
|
||||
{ id: "3", title: "How is delivery arranged?", content: "Global shipping for all agricultural hardware." },
|
||||
]}
|
||||
sideTitle="Expert Answers"
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "rotated-rays-static",
|
||||
}}
|
||||
tag="Get in touch"
|
||||
title="Modernize Your Farm Today"
|
||||
description="Request a catalog or expert consultation for your specific operation."
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "rotated-rays-static" }}
|
||||
tag="Get in touch"
|
||||
title="Modernize Your Farm Today"
|
||||
description="Request a catalog or expert consultation for your specific operation."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "#about",
|
||||
},
|
||||
{
|
||||
label: "Solutions",
|
||||
href: "#features",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Products",
|
||||
href: "#products",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
logoText="Standard Automation"
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{ items: [{ label: "About Us", href: "#about" }, { label: "Solutions", href: "#features" }] },
|
||||
{ items: [{ label: "Products", href: "#products" }, { label: "Contact", href: "#contact" }] },
|
||||
{ items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
|
||||
]}
|
||||
logoText="Standard Automation"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user