26 lines
955 B
TypeScript
26 lines
955 B
TypeScript
import NavbarFloating from '@/components/ui/NavbarFloating';
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<div className="min-h-screen bg-[#0a0a0a] text-white">
|
|
<div id="nav" data-section="nav">
|
|
<NavbarFloating
|
|
logo="RefAI"
|
|
navItems={[
|
|
{ name: "Platform", href: "#" },
|
|
{ name: "Solutions", href: "#" },
|
|
{ name: "Resources", href: "#" }
|
|
]}
|
|
ctaButton={{ text: "Get Started", href: "#" }}
|
|
/>
|
|
</div>
|
|
<main className="flex flex-col items-center justify-center min-h-screen p-8 text-center">
|
|
<h1 className="text-4xl font-bold mb-4">RefAI Foundation</h1>
|
|
<p className="text-lg max-w-lg opacity-80">
|
|
Project architecture initialization focusing on a clean, scalable SaaS structure.
|
|
This foundation establishes routing, theme system, and core layout components.
|
|
</p>
|
|
</main>
|
|
</div>
|
|
);
|
|
} |