Compare commits
19 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6ed09c83ea | |||
| fdafe794f3 | |||
| 7be09360e9 | |||
| 6c21147075 | |||
| 419f99fa66 | |||
| 316a2dd5b8 | |||
| 1cdb284f26 | |||
| 0864d5db99 | |||
| 3b742a931c | |||
| 0bea132185 | |||
| 4db69b1fbf | |||
| 7706f0d94a | |||
| d3957eebef | |||
| b93bd04dc2 | |||
| 7ecd5e6dbf | |||
| 423740ebbb | |||
| d4a99d123c | |||
| 405f70d06b | |||
| 5ea8e7d6e3 |
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?_wi=2"
|
||||
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" },
|
||||
@@ -49,7 +50,7 @@ export default function LandingPage() {
|
||||
description="Experience professional, reliable apartment cleaning services tailored for your home in Turkey. Trusted by hundreds."
|
||||
mediaItems={[
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DVd2bSqZ1s8K4Mf2y0fPlDjkRF/uploaded-1778375541390-ojme2eff.jpg", imageAlt: "Clean living room" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/service-person-cleaning-kitchen-appliances_259150-59446.jpg", imageAlt: "Sparkling kitchen" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/service-person-cleaning-kitchen-appliances_259150-59446.jpg?_wi=1", imageAlt: "Sparkling kitchen" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/high-angle-messy-bedroom-with-clothing_23-2149363778.jpg", imageAlt: "Tidy bedroom" }
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
@@ -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="© 2023 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