"use client"; import { useRouter } from "next/navigation"; import Navigation from "./components/Navigation"; import HeroSection from "./components/HeroSection"; import FlowAnimation from "./components/FlowAnimation"; import HowItWorks from "./components/HowItWorks"; import Features from "./components/Features"; import GetStarted from "./components/GetStarted"; import Footer from "./components/Footer"; export default function LandingPage() { const router = useRouter(); return (
{/* Animated Background */}
{/* Grid pattern */}
{/* Animated gradient orbs */}
{/* Vignette effect */}
{/* Hero with Flow Animation */}
{/* CTA Section */}

Ready to Simplify Your AI Infrastructure?

Join developers who are streamlining their AI integrations with 9Router. Open source and free to start.

{/* Global styles for keyframes */}
); }