Switch to version 4: added src/app/about/page.tsx

This commit is contained in:
2026-05-10 13:35:07 +00:00
parent 6c21147075
commit 7be09360e9

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

@@ -0,0 +1,44 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import MediaAbout from "@/components/sections/about/MediaAbout";
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="small"
sizing="largeSmallSizeMediumTitles"
background="blurBottom"
cardStyle="glass-depth"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Features", id: "/features" },
{ name: "Services", id: "/services" },
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/contact" },
{ name: "Privacy", id: "/privacy" },
]}
brandName="TemizEv"
/>
</div>
<MediaAbout
title="About TemizEv"
description="Since 2021, we have been dedicated to providing top-tier apartment cleaning services across Turkey. With 3 years of hands-on experience, our professional team ensures that every corner of your home sparkles. We believe in reliability, attention to detail, and eco-friendly practices to create a healthier living space for you and your family."
tag="Our Story"
imageSrc="http://img.b2bpic.net/free-photo/service-person-cleaning-kitchen-appliances_259150-59446.jpg?_wi=2"
useInvertedBackground={false}
/>
</ThemeProvider>
);
}