import React, { useState, useEffect } from 'react';
import {
Zap,
Globe,
Code,
Database,
ArrowRight,
Copy,
CheckCircle2,
Users,
ShieldCheck,
MousePointer2,
Share2,
QrCode,
Sparkles
} from 'lucide-react';
const App = () => {
const [copied, setCopied] = useState(false);
const referralLink = "https://manus.im/invitation/RI7KBMLNBAZV";
const handleCopy = () => {
navigator.clipboard.writeText(referralLink);
setCopied(true);
setTimeout(() => setCopied(false), 2000);
};
return (
{/* Navigation */}
{/* Hero Section */}
{/* The Difference Section */}
Chatbots Suggest. Agents Deliver.
Why struggle with multi-turn prompts when you can just set a goal and watch it happen?
Legacy AI Chatbots
"Here is a plan for how you could research this..."
"I cannot access that website due to my training data cutoff."
"Please copy and paste this code manually into your terminal."
Manus Autonomous Agent
"I've browsed 15 sources and compiled the final report for you."
"I navigated the site, extracted the leads, and saved them to your sheet."
"The web app is live. I've deployed it and verified the SSL certificate."
{/* Features Grid */}
Live Web Browsing
Manus navigates the internet just like a human. It bypasses dead links, verifies sources, and clicks through menus to find exactly what you need.
Autonomous Coding
Don't just get code snippets. Manus builds entire applications, installs dependencies, and fixes bugs in a secure, sandbox environment.
Deep Data Synthesis
Turn chaotic data into actionable wisdom. Manus can scrape, clean, and visualize data across multiple platforms without intervention.
{/* Referral/Credit Section (Based on screenshots) */}
{/* Decorative elements */}
Unlock 500 Credits Instantly
Share the future of work. When you join using my invitation, we both get 500 credits to power our agents.
For You
500 Credits
Applied on signup
Priority Access
Early Adopter
Skip the waitlist
{/* Trust & Testimonial */}
"Manus is the first AI that feels like I've actually hired someone. It doesn't just tell me how to do a market analysis; it spends 10 minutes browsing the web and hands me a finished deck."
Product Manager
Founding User @ Manus
{/* Footer */}
{/* Floating CTA for Mobile */}
);
};
export default App;