Add src/app/about/page.tsx

This commit is contained in:
2026-04-19 03:59:41 +00:00
parent 621aa55e22
commit 97023d12ba

26
src/app/about/page.tsx Normal file
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 AboutPage() {
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>About LuminaWrite</h1></div>
<FooterBase columns={[]} logoText="LuminaWrite" />
</ThemeProvider>
);
}