muthuk1's picture
🎨 Ultra premium UI: 6 separate pages with animations, bento grid, premium design
005833b verified
raw
history blame contribute delete
288 Bytes
import { Navbar } from "@/components/Navbar";
import { Footer } from "@/components/Footer";
import { DocsContent } from "@/components/docs/DocsContent";
export default function DocsPage() {
return (
<main>
<Navbar />
<DocsContent />
<Footer />
</main>
);
}