Merge version_4 into main
Merge version_4 into main
This commit was merged in pull request #22.
This commit is contained in:
44
src/app/about/page.tsx
Normal file
44
src/app/about/page.tsx
Normal 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"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -32,6 +32,7 @@ export default function LandingPage() {
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Features", id: "features" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
@@ -85,9 +86,9 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia imageSrc="http://img.b2bpic.net/free-photo/bushes-lavender-courtyard_627829-14110.jpg" logoText="TemizEv" columns={[{ title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Careers", href: "#" }] }, { title: "Legal", items: [{ label: "Privacy Policy", href: "/privacy" }, { label: "Terms", href: "#" }] }]} copyrightText="© 2024 TemizEv Cleaning Services" />
|
||||
<FooterMedia imageSrc="http://img.b2bpic.net/free-photo/bushes-lavender-courtyard_627829-14110.jpg" logoText="TemizEv" columns={[{ title: "Company", items: [{ label: "About Us", href: "/about" }, { label: "Careers", href: "#" }] }, { title: "Legal", items: [{ label: "Privacy Policy", href: "/privacy" }, { label: "Terms", href: "#" }] }]} copyrightText="© 2024 TemizEv Cleaning Services" />
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -22,6 +22,7 @@ export default function PrivacyPolicyPage() {
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Privacy", id: "/privacy" },
|
||||
]}
|
||||
brandName="TemizEv"
|
||||
|
||||
Reference in New Issue
Block a user