Add src/app/about/page.tsx

This commit is contained in:
2026-04-07 18:40:27 +00:00
parent d6bde35cdc
commit 0621a0bb15

20
src/app/about/page.tsx Normal file
View File

@@ -0,0 +1,20 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import FooterCard from "@/components/sections/footer/FooterCard";
import ReactLenis from "lenis/react";
export default function AboutPage() {
const navItems = [{ name: "Anasayfa", id: "/" }, { name: "Hakkımızda", id: "/about" }, { name: "Hizmetler", id: "/services" }, { name: "İletişim", id: "/contact" }];
return (
<ThemeProvider><ReactLenis root>
<NavbarLayoutFloatingInline navItems={navItems} brandName="GOYO" />
<div className="pt-32 pb-20 px-8 container mx-auto text-center">
<h1 className="text-6xl font-bold mb-6">Hakkımızda</h1>
<p className="max-w-2xl mx-auto text-lg">GOYO, işletmelerin dijitalleşmesini yapay zeka ile hızlandırmak için kurulmuş bir teknoloji şirketidir.</p>
</div>
<FooterCard logoText="GOYO" columns={[{ title: "Menu", items: [{ label: "Anasayfa", href: "/" }] }]} />
</ReactLenis></ThemeProvider>
);
}