File size: 8,491 Bytes
504fa06 f479a01 504fa06 f479a01 cbfbc13 f479a01 504fa06 8d2dad2 dfbe86c 504fa06 dfbe86c f479a01 613b7f2 f479a01 613b7f2 504fa06 613b7f2 f479a01 613b7f2 504fa06 0a6a843 f479a01 0a6a843 504fa06 f479a01 9e67465 f479a01 4fea30b f479a01 4fea30b f479a01 4fea30b f479a01 4fea30b 504fa06 f479a01 504fa06 f479a01 504fa06 f479a01 504fa06 f479a01 5b2bfc2 4fea30b 504fa06 5b2bfc2 4fea30b 504fa06 4fea30b 61a42ec 504fa06 61a42ec f479a01 504fa06 f479a01 cbfbc13 b376d89 f479a01 5b2bfc2 4fea30b 504fa06 4fea30b 61a42ec 504fa06 61a42ec f479a01 504fa06 f479a01 cbfbc13 504fa06 f479a01 504fa06 5b2bfc2 4fea30b 504fa06 4fea30b 61a42ec 504fa06 61a42ec f479a01 504fa06 f479a01 cbfbc13 504fa06 f479a01 4fea30b f479a01 504fa06 dfbe86c 504fa06 dfbe86c f479a01 cbfbc13 f479a01 504fa06 f479a01 504fa06 f479a01 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 |
import { useNavigate } from "react-router-dom";
import { Button } from "@/components/ui/button";
import { Menu } from "lucide-react";
export function Landing() {
const navigate = useNavigate();
return (
<div className="min-h-screen bg-white">
{/* Navigation */}
<nav className="bg-white border-b border-gray-200">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div className="flex justify-between items-center h-20">
{/* Logo */}
<div className="flex items-center">
<img
src="/assets/logo.png"
alt="EdgeLLM Logo"
className="h-20 w-20"
onError={(e) => {
console.error("Logo failed to load");
e.currentTarget.style.display = "none";
}}
/>
</div>
{/* Navigation Links */}
<div className="hidden md:flex items-center space-x-8">
<span className="text-white bg-purple-600 px-4 py-2 rounded-md font-medium">
Home
</span>
<button
onClick={() => navigate("/technology")}
className="text-gray-700 hover:text-purple-600 font-medium transition-colors"
>
Technology
</button>
<button
onClick={() => navigate("/usecases")}
className="text-gray-700 hover:text-purple-600 font-medium transition-colors"
>
Use Cases
</button>
<Button
variant="outline"
onClick={() => navigate("/mydevice")}
className="border-purple-600 text-purple-600 hover:bg-purple-50"
>
My Device
</Button>
</div>
{/* Mobile menu button */}
<div className="md:hidden">
<Button variant="ghost" size="sm">
<Menu className="h-5 w-5" />
</Button>
</div>
</div>
</div>
</nav>
{/* Hero Section */}
<div className="relative py-12 px-4 sm:px-6 lg:px-8">
<div className="max-w-4xl mx-auto text-center">
{/* Main Headline */}
<div className="relative mb-6">
<h1 className="text-4xl md:text-6xl lg:text-7xl font-bold text-black leading-tight">
Offline AI that
<br />
works where the
<br />
cloud cannot
</h1>
</div>
{/* Subtitle */}
<p className="text-lg md:text-xl text-purple-700 font-semibold mb-8 max-w-3xl mx-auto">
AI that stays reliable, private, and resilient in any environment
</p>
{/* CTA Buttons */}
<div className="flex flex-col sm:flex-row gap-4 justify-center items-center mb-12">
<Button
size="lg"
className="bg-purple-600 hover:bg-purple-700 text-white px-8 py-3 text-lg font-medium"
onClick={() => navigate("/usecases")}
>
Learn More
</Button>
<Button
size="lg"
variant="outline"
className="border-purple-600 text-purple-600 hover:bg-purple-50 px-8 py-3 text-lg font-medium"
onClick={() => navigate("/mydevice")}
>
I already have a device
</Button>
</div>
</div>
</div>
{/* Features Section */}
<div className="py-12 px-4 sm:px-6 lg:px-8 bg-gray-50">
<div className="max-w-6xl mx-auto">
<div className="grid grid-cols-1 md:grid-cols-3 gap-8">
{/* Always Available & Reliable */}
<div className="bg-white rounded-2xl p-6 shadow-lg border border-gray-200 text-center">
<div className="mb-6">
<div className="w-16 h-16 bg-purple-600 rounded-full flex items-center justify-center mx-auto mb-4">
<img
src="/assets/24h.png"
alt="Always Available & Reliable"
className="h-10 w-10"
onError={(e) => {
console.error("24h icon failed to load");
e.currentTarget.style.display = "none";
}}
/>
</div>
<h3 className="text-lg font-bold text-black mb-3">
Always Available & Reliable
</h3>
</div>
<p className="text-gray-600 text-sm leading-relaxed">
Cloud AI fails without internet and latency can cost lives. Our
offline AI runs instantly on-device, ready anywhere from remote
locations to safety-critical moments.
</p>
</div>
{/* Privacy & Security */}
<div className="bg-white rounded-2xl p-6 shadow-lg border border-gray-200 text-center">
<div className="mb-6">
<div className="w-16 h-16 bg-purple-600 rounded-full flex items-center justify-center mx-auto mb-4">
<img
src="/assets/privacy.png"
alt="Privacy & Security"
className="h-10 w-10"
onError={(e) => {
console.error("Privacy icon failed to load");
e.currentTarget.style.display = "none";
}}
/>
</div>
<h3 className="text-lg font-bold text-black mb-3">
Privacy & Security
</h3>
</div>
<p className="text-gray-600 text-sm leading-relaxed">
Cloud AI requires uploading sensitive data. Offline AI keeps all
processing local, protecting personal privacy and enterprise
security.
</p>
</div>
{/* Affordable & Powerful */}
<div className="bg-white rounded-2xl p-6 shadow-lg border border-gray-200 text-center">
<div className="mb-6">
<div className="w-16 h-16 bg-purple-600 rounded-full flex items-center justify-center mx-auto mb-4">
<img
src="/assets/reliablity.png"
alt="Affordable & Powerful"
className="h-10 w-10"
onError={(e) => {
console.error("Affordable icon failed to load");
e.currentTarget.style.display = "none";
}}
/>
</div>
<h3 className="text-lg font-bold text-black mb-3">
Affordable & Powerful
</h3>
</div>
<p className="text-gray-600 text-sm leading-relaxed">
Cloud AI charges expensive per-token fees that scale with usage.
Offline AI delivers enterprise-grade intelligence with unlimited
conversations, providing premium performance without recurring
costs.
</p>
</div>
</div>
</div>
</div>
{/* Footer */}
<footer className="bg-white text-gray-600 py-8 px-4 sm:px-6 lg:px-8 border-t border-gray-200">
<div className="max-w-6xl mx-auto text-center">
<div className="flex items-center justify-center mb-4">
<img
src="/assets/logo.png"
alt="EdgeLLM Logo"
className="h-12 w-12"
onError={(e) => {
console.error("Footer logo failed to load");
e.currentTarget.style.display = "none";
}}
/>
</div>
<p className="text-gray-600 mb-6">
Need help? Contact us to get customized device and services
</p>
<div className="flex justify-center space-x-6">
<a href="#" className="text-gray-500 hover:text-gray-700">
Privacy Policy
</a>
<a href="#" className="text-gray-500 hover:text-gray-700">
Terms of Service
</a>
<a href="#" className="text-gray-500 hover:text-gray-700">
Support
</a>
</div>
</div>
</footer>
</div>
);
}
|