Update src/app/page.tsx
This commit is contained in:
311
src/app/page.tsx
311
src/app/page.tsx
@@ -12,7 +12,8 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp
|
||||
import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
|
||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
|
||||
import { ShieldCheck, TrendingUp, Zap } from "lucide-react";
|
||||
import TimelineProcessFlow from '@/components/cardStack/layouts/timelines/TimelineProcessFlow';
|
||||
import { ShieldCheck, TrendingUp, Zap, Megaphone } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -32,22 +33,11 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "Calculator",
|
||||
id: "calculator",
|
||||
},
|
||||
{
|
||||
name: "Pricing",
|
||||
id: "pricing",
|
||||
},
|
||||
{
|
||||
name: "Support",
|
||||
id: "faq",
|
||||
},
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Calculator", id: "calculator" },
|
||||
{ name: "Sell Business", id: "sell" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "Support", id: "faq" },
|
||||
]}
|
||||
brandName="Aqua Profit AI"
|
||||
/>
|
||||
@@ -57,37 +47,11 @@ export default function LandingPage() {
|
||||
<HeroCarouselLogo
|
||||
logoText="Aqua Profit AI"
|
||||
description="Calculate, optimize, and scale your guppy breeding business with data-driven AI insights."
|
||||
buttons={[
|
||||
{
|
||||
text: "Calculate Profit",
|
||||
href: "#calculator",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Calculate Profit", href: "#calculator" }]}
|
||||
slides={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/futuristic-representation-water-home-architecture_23-2151048187.jpg",
|
||||
imageAlt: "Aqua Profit AI Interface",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hands-robot-human-hands-touching-with-fingers-virtual-reality-artificial-intelligence-technology-concept_460848-7985.jpg",
|
||||
imageAlt: "Breeding Metrics",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/liquid-marbling-paint-texture-background-fluid-painting-abstract-texture-intensive-color-mix-wallpaper_1258-103282.jpg",
|
||||
imageAlt: "Scalable Growth",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/modern-white-technology-background_23-2148394403.jpg",
|
||||
imageAlt: "Fish Nutrition Analysis",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/surreal-neon-tropical-flowers_23-2151665772.jpg",
|
||||
imageAlt: "Tank Setup Insights",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/liquid-marbling-paint-texture-background-fluid-painting-abstract-texture-intensive-color-mix-wallpaper_1258-90275.jpg",
|
||||
imageAlt: "Net Profit Data",
|
||||
},
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/futuristic-representation-water-home-architecture_23-2151048187.jpg", imageAlt: "Aqua Profit AI Interface" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/hands-robot-human-hands-touching-with-fingers-virtual-reality-artificial-intelligence-technology-concept_460848-7985.jpg", imageAlt: "Breeding Metrics" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/liquid-marbling-paint-texture-background-fluid-painting-abstract-texture-intensive-color-mix-wallpaper_1258-103282.jpg", imageAlt: "Scalable Growth" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -97,52 +61,38 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Why Choose Aqua Profit AI?"
|
||||
metrics={[
|
||||
{
|
||||
icon: Zap,
|
||||
label: "Accuracy",
|
||||
value: "99%",
|
||||
},
|
||||
{
|
||||
icon: TrendingUp,
|
||||
label: "Growth Rate",
|
||||
value: "45%",
|
||||
},
|
||||
{
|
||||
icon: ShieldCheck,
|
||||
label: "Survival Rate",
|
||||
value: "95%",
|
||||
},
|
||||
{ icon: Zap, label: "Accuracy", value: "99%" },
|
||||
{ icon: TrendingUp, label: "Growth Rate", value: "45%" },
|
||||
{ icon: ShieldCheck, label: "Survival Rate", value: "95%" },
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="sell" data-section="sell">
|
||||
<TimelineProcessFlow
|
||||
title="Sell Your Breeding Platform"
|
||||
description="Ready to exit? List your guppy breeding business or platform with our specialized marketplace and connect with eager buyers instantly."
|
||||
tag="Marketplace"
|
||||
tagIcon={Megaphone}
|
||||
textboxLayout="split"
|
||||
animationType="slide-up"
|
||||
items={[
|
||||
{ content: "Create a listing detailing your tank infrastructure and current stock yields.", media: null, reverse: false },
|
||||
{ content: "Get matched with verified investors looking for aquaculture assets.", media: null, reverse: true },
|
||||
{ content: "Secure a transparent transfer of ownership and assets.", media: null, reverse: false }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="calculator" data-section="calculator">
|
||||
<FeatureCardNineteen
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
tag: "Input",
|
||||
title: "Female Count",
|
||||
subtitle: "Total breeders",
|
||||
description: "Number of female guppies currently in your tank.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-underwater-shot-beautiful-brown-discus-fish_181624-21851.jpg",
|
||||
},
|
||||
{
|
||||
tag: "Input",
|
||||
title: "Feeding Costs",
|
||||
subtitle: "Variable costs",
|
||||
description: "Total monthly expenditure on high-quality fish feed.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/macro-shot-fish-eye_23-2147894126.jpg",
|
||||
},
|
||||
{
|
||||
tag: "Input",
|
||||
title: "Tank Maintenance",
|
||||
subtitle: "Operational costs",
|
||||
description: "Ongoing costs for tank hardware, cleaning, and water.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/halfmoon-betta-fish_1150-7901.jpg",
|
||||
},
|
||||
{ tag: "Input", title: "Female Count", subtitle: "Total breeders", description: "Number of female guppies currently in your tank.", imageSrc: "http://img.b2bpic.net/free-photo/closeup-underwater-shot-beautiful-brown-discus-fish_181624-21851.jpg" },
|
||||
{ tag: "Input", title: "Feeding Costs", subtitle: "Variable costs", description: "Total monthly expenditure on high-quality fish feed.", imageSrc: "http://img.b2bpic.net/free-photo/macro-shot-fish-eye_23-2147894126.jpg" },
|
||||
{ tag: "Input", title: "Tank Maintenance", subtitle: "Operational costs", description: "Ongoing costs for tank hardware, cleaning, and water.", imageSrc: "http://img.b2bpic.net/free-photo/halfmoon-betta-fish_1150-7901.jpg" },
|
||||
]}
|
||||
title="Breeding Profitability Calculator"
|
||||
description="Enter your variables to see your projected net profit instantly."
|
||||
@@ -156,48 +106,9 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Pro Tank 50L",
|
||||
price: "₹4,500",
|
||||
variant: "Premium",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-near-aquariums_1398-1566.jpg",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Nutrient Mix A",
|
||||
price: "₹999",
|
||||
variant: "Feed",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/contrasting-outdoor-textures_23-2149702241.jpg",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Oxygen Pump X",
|
||||
price: "₹1,200",
|
||||
variant: "Hardware",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/goldfish-swimming-glass-fishbowl-underwater-generative-ai_188544-31794.jpg",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Water Filter Pro",
|
||||
price: "₹2,100",
|
||||
variant: "Hardware",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-s-hand-dissolving-pieces-paper-into-water_23-2147845453.jpg",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Breeder Net",
|
||||
price: "₹499",
|
||||
variant: "Accessory",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/betta-fighting-fish-black-background_1150-7911.jpg",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Tank Cleaner",
|
||||
price: "₹750",
|
||||
variant: "Maintenance",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-fresh-fish-stack_23-2148263878.jpg",
|
||||
},
|
||||
{ id: "p1", name: "Pro Tank 50L", price: "₹4,500", variant: "Premium", imageSrc: "http://img.b2bpic.net/free-photo/woman-near-aquariums_1398-1566.jpg" },
|
||||
{ id: "p2", name: "Nutrient Mix A", price: "₹999", variant: "Feed", imageSrc: "http://img.b2bpic.net/free-photo/contrasting-outdoor-textures_23-2149702241.jpg" },
|
||||
{ id: "p3", name: "Oxygen Pump X", price: "₹1,200", variant: "Hardware", imageSrc: "http://img.b2bpic.net/free-photo/goldfish-swimming-glass-fishbowl-underwater-generative-ai_188544-31794.jpg" },
|
||||
]}
|
||||
title="Premium Breeding Gear"
|
||||
description="Professional tools for the modern guppy farmer."
|
||||
@@ -210,53 +121,9 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
plans={[
|
||||
{
|
||||
id: "basic",
|
||||
badge: "Starter",
|
||||
price: "₹499/mo",
|
||||
subtitle: "Basic calculator",
|
||||
buttons: [
|
||||
{
|
||||
text: "Get Started",
|
||||
},
|
||||
],
|
||||
features: [
|
||||
"Profit Calculator",
|
||||
"Survival Tracking",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "pro",
|
||||
badge: "Pro",
|
||||
price: "₹1,299/mo",
|
||||
subtitle: "Advanced AI",
|
||||
buttons: [
|
||||
{
|
||||
text: "Get Pro",
|
||||
},
|
||||
],
|
||||
features: [
|
||||
"AI Forecasting",
|
||||
"Growth Analytics",
|
||||
"Priority Support",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "enterprise",
|
||||
badge: "Enterprise",
|
||||
price: "₹2,999/mo",
|
||||
subtitle: "Full Scale",
|
||||
buttons: [
|
||||
{
|
||||
text: "Contact Us",
|
||||
},
|
||||
],
|
||||
features: [
|
||||
"Inventory Tracking",
|
||||
"Team Management",
|
||||
"Custom Dashboards",
|
||||
],
|
||||
},
|
||||
{ id: "basic", badge: "Starter", price: "₹499/mo", subtitle: "Basic calculator", buttons: [{ text: "Get Started" }], features: ["Profit Calculator", "Survival Tracking"] },
|
||||
{ id: "pro", badge: "Pro", price: "₹1,299/mo", subtitle: "Advanced AI", buttons: [{ text: "Get Pro" }], features: ["AI Forecasting", "Growth Analytics", "Priority Support"] },
|
||||
{ id: "enterprise", badge: "Enterprise", price: "₹2,999/mo", subtitle: "Full Scale", buttons: [{ text: "Contact Us" }], features: ["Inventory Tracking", "Team Management", "Custom Dashboards"] },
|
||||
]}
|
||||
title="Choose Your Plan"
|
||||
description="Unlock advanced AI features for your breeding business."
|
||||
@@ -269,46 +136,8 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Rohan M.",
|
||||
handle: "@rohanfish",
|
||||
testimonial: "Aqua Profit AI increased my monthly output by 30%.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-young-man-standing-front-keypad-his-home-alarm-system-smiling_662251-2823.jpg",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Anita S.",
|
||||
handle: "@anitabreed",
|
||||
testimonial: "The best tool for guppy farming. So intuitive!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-glad-fisherman-wearing-red-hat-yellow-jacket-overalls-looking-with-pleased-expression-his-catch-feeling-surge-pride_273609-8095.jpg",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
name: "David K.",
|
||||
handle: "@davidtanks",
|
||||
testimonial: "Saved me a lot of money on feed waste.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bearded-fisherman-yellow-anorak-red-hat-holding-huge-fish-hands-demonstrating-his-successful-catch-horizontal-portrait-skilled-workman-posing-with-big-salmon-blue-wall_273609-8093.jpg",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
name: "Priya L.",
|
||||
handle: "@priyaguppies",
|
||||
testimonial: "Predictive analytics are spot on.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hobby-recreation-leisure-activity-concept-cheerful-unshaven-young-fisherman-angler-stylish-colorful-clothing-holding-two-fresh-caught-fish-smiling-broadly-feeling-proud-his-catch_273609-8105.jpg",
|
||||
},
|
||||
{
|
||||
id: "t5",
|
||||
name: "Sam V.",
|
||||
handle: "@samwater",
|
||||
testimonial: "Highly recommended for all breeders.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-make-up-artist-putting-make-up-himself_23-2150166159.jpg",
|
||||
},
|
||||
{ id: "t1", name: "Rohan M.", handle: "@rohanfish", testimonial: "Aqua Profit AI increased my monthly output by 30%.", rating: 5 },
|
||||
{ id: "t2", name: "Anita S.", handle: "@anitabreed", testimonial: "The best tool for guppy farming. So intuitive!", rating: 5 },
|
||||
]}
|
||||
showRating={true}
|
||||
title="Breeder Success Stories"
|
||||
@@ -320,21 +149,8 @@ export default function LandingPage() {
|
||||
<FaqSplitText
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "q1",
|
||||
title: "Is the AI calculator free?",
|
||||
content: "We offer a basic plan for free, and advanced features in Pro.",
|
||||
},
|
||||
{
|
||||
id: "q2",
|
||||
title: "How is survival rate calculated?",
|
||||
content: "Based on historical data and environmental variables.",
|
||||
},
|
||||
{
|
||||
id: "q3",
|
||||
title: "Can I export my data?",
|
||||
content: "Yes, PDF exports are available for Enterprise users.",
|
||||
},
|
||||
{ id: "q1", title: "Is the AI calculator free?", content: "We offer a basic plan for free, and advanced features in Pro." },
|
||||
{ id: "q2", title: "How is survival rate calculated?", content: "Based on historical data and environmental variables." },
|
||||
]}
|
||||
sideTitle="Frequently Asked Questions"
|
||||
faqsAnimation="slide-up"
|
||||
@@ -344,16 +160,9 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "canvas-reveal",
|
||||
}}
|
||||
background={{ variant: "canvas-reveal" }}
|
||||
text="Ready to maximize your profits? Get in touch with our team today."
|
||||
buttons={[
|
||||
{
|
||||
text: "Contact Support",
|
||||
href: "mailto:support@aquaprofit.ai",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Contact Support", href: "mailto:support@aquaprofit.ai" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -362,36 +171,12 @@ export default function LandingPage() {
|
||||
imageSrc="http://img.b2bpic.net/free-vector/futuristic-technology-banner-with-red-blue-lights_1017-32253.jpg"
|
||||
logoText="Aqua Profit AI"
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{
|
||||
label: "About",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Pricing",
|
||||
href: "#pricing",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Company", items: [{ label: "About", href: "#" }, { label: "Pricing", href: "#pricing" }] },
|
||||
{ title: "Legal", items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user