Add src/app/documentation/page.tsx

This commit is contained in:
2026-04-19 03:59:43 +00:00
parent 4127672be7
commit 4e11cc1d86

View File

@@ -0,0 +1,26 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import FooterBase from '@/components/sections/footer/FooterBase';
export default function DocumentationPage() {
return (
<ThemeProvider>
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Features", id: "/#features" },
{ name: "Pricing", id: "/pricing" },
{ name: "About", id: "/about" },
{ name: "Blog", id: "/blog" },
{ name: "Docs", id: "/documentation" },
{ name: "Contact", id: "/contact" }
]}
brandName="LuminaWrite"
/>
<div className="pt-32 pb-20 text-center"><h1>Documentation</h1></div>
<FooterBase columns={[]} logoText="LuminaWrite" />
</ThemeProvider>
);
}