diff --git a/app/page.tsx b/app/page.tsx index 882a6b9..4784ac9 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,57 +1,75 @@ -import Link from "next/link" -import { Button } from "@/components/ui/button" -import { Card, CardDescription, CardHeader, CardTitle } from "@/components/ui/card" -import { Navigation } from "@/components/navigation" -import { ArrowRight, Database, Shield, Zap } from "lucide-react" -import Orb from "@/components/Orb" +import Link from "next/link"; +import { Button } from "@/components/ui/button"; +import { Card, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"; +import { Navigation } from "@/components/navigation"; +import { ArrowRight, Database, Shield, Zap } from "lucide-react"; +import Orb from "@/components/Orb"; + +// StepArrow component +const StepArrow = () => ( +
+ + + +
+); export default function HomePage() { return ( -
- {/* */} +
{/* Hero Section */}
-
-
- +
+
+
-

- Orb Oracle: -
The Price of Everything
+

+ Orb Oracle: +
+ The Price of Everything +

-
@@ -63,7 +81,9 @@ export default function HomePage() {
-

Why choose OracleNet?

+

+ Why choose OracleNet? +

Enterprise-grade infrastructure for the next generation of decentralized applications

@@ -109,25 +129,47 @@ export default function HomePage() {
- {/* Stats Section */} -
-
-
-
-
1,247
-
Active Oracles
-
-
-
$2.4B
-
Total Value Secured
+ {/* How Orb Oracle Works */} +
+
+

+ How Orb Oracle Works? +

+ +
+ {/* Step 1 */} +
+
+ 1 +
+

Multi-Source Aggregation

+

+ Orb Oracle pulls live prices from top exchanges, filters out bad data, and delivers a clean, reliable market value. +

+
-
-
99.9%
-
Uptime
+ + {/* Step 2 */} +
+
+ 2 +
+

Validation & Signing

+

+ Independent nodes verify each update and sign it with cryptography to ensure accuracy and security. +

+
-
-
50+
-
Supported Chains
+ + {/* Step 3 */} +
+
+ 3 +
+

On-Chain Publishing

+

+ The verified data is posted on-chain so smart contracts can access it instantly — no middlemen needed. +

@@ -137,7 +179,9 @@ export default function HomePage() {
-

Ready to build the future?

+

+ Ready to build the future? +

Join thousands of developers building the next generation of decentralized applications

@@ -150,5 +194,5 @@ export default function HomePage() {
- ) + ); }