defrag / src /app /page.tsx
cjo93's picture
Create src/app/page.tsx
8c1c27e verified
raw
history blame contribute delete
749 Bytes
export default function Home() {
return (
<div className="min-h-screen flex flex-col items-center justify-center p-8">
<main className="text-center space-y-8">
<h1 className="text-6xl font-bold">
DEFRAG
</h1>
<p className="text-xl text-gray-400">
The Operating System for Human Alignment
</p>
<div className="pt-8">
<a
href="https://github.com/cjo93/defrag"
target="_blank"
rel="noopener noreferrer"
className="inline-block bg-blue-600 hover:bg-blue-700 text-white font-semibold px-8 py-3 rounded-lg transition-colors"
>
View on GitHub
</a>
</div>
</main>
</div>
);
}