Add src/app/documentation/page.tsx
This commit is contained in:
26
src/app/documentation/page.tsx
Normal file
26
src/app/documentation/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user