From 93e43ed9a4461b18ee848378f0669366148bd842 Mon Sep 17 00:00:00 2001 From: NotII <46204250+NotII@users.noreply.github.com> Date: Sun, 2 Mar 2025 04:48:37 +0000 Subject: [PATCH] Update page.tsx --- app/page.tsx | 251 ++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 249 insertions(+), 2 deletions(-) diff --git a/app/page.tsx b/app/page.tsx index 28e0813..9b9dea6 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,5 +1,252 @@ -import { redirect } from "next/navigation" +"use client"; + +import Link from "next/link"; +import { ArrowRight, Shield, Globe, Zap, LineChart, LogIn } from "lucide-react"; +import { Button } from "@/components/ui/button"; +import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"; export default function Home() { - redirect("/dashboard") + return ( +
+ {/* Header Navigation */} +
+
+ Ember +
+ +
+ +
+
+ + {/* Hero Section */} +
+
+

+ Streamlined E-commerce Management +

+

+ Ember provides everything you need to manage your e-commerce business efficiently in one place. +

+
+
+ + + + + + +
+
+ + {/* Features Section */} +
+
+
+

Powerful Features

+

+ Everything you need to manage orders, track metrics, and grow your business. +

+
+
+ + +
+ +
+ Secure Transactions +
+ + + Process payments securely with built-in encryption and fraud detection measures to protect your business and customers. + + +
+ + +
+ +
+ Order Tracking +
+ + + Manage and track orders from receipt to delivery with our intuitive order management system. + + +
+ + +
+ +
+ Fast Performance +
+ + + Lightning-fast dashboard with real-time updates gives you the information you need when you need it. + + +
+
+
+
+ + {/* Benefits Section */} +
+
+
+

Why Choose Ember

+

+ Our platform is designed to make e-commerce management simple and efficient. +

+
+
+
+

Centralized Management

+

+ Manage all aspects of your e-commerce business from a single dashboard. +

+
+
+

Advanced Analytics

+

+ Gain insights into your business with detailed analytics and reporting tools. +

+
+
+

Customer Management

+

+ Keep track of customer information and purchase history to provide better service. +

+
+
+

Inventory Control

+

+ Manage your inventory with precision to avoid stock-outs and overstocking. +

+
+
+
+ + + +
+
+
+ + {/* Footer */} + +
+ ); } \ No newline at end of file