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