:3 blehhh

This commit is contained in:
NotII
2025-04-10 00:52:42 +01:00
parent 2221c39df9
commit 907831d6a7
2 changed files with 54 additions and 106 deletions

View File

@@ -111,67 +111,12 @@ export default async function Home() {
</div>
</section>
{/* Benefits Section */}
<section className="relative py-24 px-4">
<div className="max-w-7xl mx-auto">
<div className="grid md:grid-cols-2 gap-8">
{[
{
title: "Centralized Dashboard",
description: "Manage your entire e-commerce operation from a single, intuitive interface."
},
{
title: "Customer Insights",
description: "Understand your customers better with detailed purchase history and behavior analytics."
},
{
title: "Inventory Management",
description: "Keep track of your stock levels and get alerts when it's time to reorder."
},
{
title: "Automated Reports",
description: "Get detailed reports and insights delivered automatically to your inbox."
}
].map((benefit, i) => (
<div key={i} className="flex items-start space-x-4 p-6 rounded-lg bg-zinc-900/50 border border-zinc-800">
<div className="flex-shrink-0">
<CheckCircle2 className="h-6 w-6 text-[#D53F8C]" />
</div>
<div>
<h3 className="text-lg font-medium text-white mb-2">{benefit.title}</h3>
<p className="text-sm text-zinc-400">{benefit.description}</p>
</div>
</div>
))}
</div>
</div>
</section>
{/* CTA Section */}
<section className="relative py-24 px-4">
<div className="relative max-w-3xl mx-auto text-center">
<h2 className="text-3xl md:text-4xl font-bold mb-6">Ready to Get Started?</h2>
<p className="text-lg text-zinc-400 mb-8">
Join thousands of businesses already using Ember to manage their e-commerce operations.
</p>
<Link href="/dashboard">
<Button size="lg" className="bg-[#D53F8C] hover:bg-[#B83280] text-white border-0 h-12 px-8">
Start Now
</Button>
</Link>
</div>
</section>
{/* Footer */}
<footer className="relative py-12 px-4 mt-auto">
<div className="max-w-7xl mx-auto flex flex-col items-center">
<div className="flex items-center gap-2 mb-4">
<h3 className="font-bold text-xl text-white">Ember</h3>
<div className="h-1.5 w-1.5 rounded-full bg-[#D53F8C]" />
</div>
<p className="text-sm text-zinc-400 text-center max-w-md mb-6">
The complete e-commerce management solution for modern businesses.
</p>
<div className="text-sm text-zinc-500">
© {new Date().getFullYear()} Ember. All rights reserved.
</div>