Add src/app/garmen-emlak/page.tsx
This commit is contained in:
124
src/app/garmen-emlak/page.tsx
Normal file
124
src/app/garmen-emlak/page.tsx
Normal file
@@ -0,0 +1,124 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||
import SplitAbout from "@/components/sections/about/SplitAbout";
|
||||
import ContactText from "@/components/sections/contact/ContactText";
|
||||
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
|
||||
import Link from "next/link";
|
||||
import { Home, Building2, Landmark } from "lucide-react";
|
||||
|
||||
export default function RealEstatePage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-shift"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="mediumLarge"
|
||||
sizing="mediumLargeSizeMediumTitles"
|
||||
background="fluid"
|
||||
cardStyle="soft-shadow"
|
||||
primaryButtonStyle="primary-glow"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="Garmen Yapı İnşaat"
|
||||
navItems={[
|
||||
{ name: "Ana Sayfa", id: "/" },
|
||||
{ name: "Kurumsal", id: "/kurumsal" },
|
||||
{ name: "Hizmetler", id: "/hizmetler" },
|
||||
{ name: "Projeler", id: "/projeler" },
|
||||
{ name: "Garmen Emlak", id: "/garmen-emlak" },
|
||||
{ name: "Referanslar", id: "#references" },
|
||||
{ name: "İletişim", id: "/iletisim" },
|
||||
]}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="realestate" data-section="realestate">
|
||||
<SplitAbout
|
||||
title="Garmen Emlak"
|
||||
description="Garmen Emlak, gayrimenkul alanında uzmanlaşmış, satılık ve kiralık mülkler için kapsamlı danışmanlık hizmetleri sunan bölümümüzdür. Müşterilerimizin hayallarının evini veya yatırım alanını bulmalarında yardımcı oluyoruz."
|
||||
tag="Emlak Hizmetleri"
|
||||
tagAnimation="slide-up"
|
||||
imagePosition="left"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/happy-co-workers-sitting-couch_1098-3106.jpg?_wi=1"
|
||||
imageAlt="real estate office property consultant meeting"
|
||||
mediaAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
bulletPoints={[
|
||||
{
|
||||
title: "Konut Danışmanlığı", description: "Konut satın alma ve kiralama konusunda profesyonel rehberlik ve pazar analizi", icon: Home,
|
||||
},
|
||||
{
|
||||
title: "Arsa Değerlendirmesi", description: "Potansiyel değerlendirme ve yatırım analizi hizmetleri", icon: Landmark,
|
||||
},
|
||||
{
|
||||
title: "Ticari Gayrimenkul", description: "Ticari alanlar için güvenilir danışmanlık ve portföy yönetimi", icon: Building2,
|
||||
},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Harita Gördür", href: "#"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<SplitAbout
|
||||
title="Neden Garmen Emlak?"
|
||||
description="Garmen Emlak, müşteri memnuniyeti ve profesyonel hizmetle bu alanda güven kazanmıştır."
|
||||
tag="Avantajlar"
|
||||
tagAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/architecture-concept-with-building-plans-copyspace_23-2147813102.jpg?_wi=1"
|
||||
imageAlt="property investment planning real estate"
|
||||
mediaAnimation="blur-reveal"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
bulletPoints={[
|
||||
{
|
||||
title: "Deneyimli Ekip", description: "Emlak sektöründe yılların tecrübesine sahip danışmanlarımız"},
|
||||
{
|
||||
title: "Geniş Portföy", description: "Farklı bölgelerde ve çeşitlilikte mülk seçenekleri"},
|
||||
{
|
||||
title: "Güvenilir İşlemler", description: "Hukuki danışmanlık ve doğru belgelendirme ile güvenli işlemler"},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Portföyü Gördür", href: "#"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
text="Garmen Emlak hizmetleri hakkında daha fazla bilgi almak veya mülk bulunması için bizimle iletişime geçiniz."
|
||||
animationType="entrance-slide"
|
||||
background={{ variant: "gradient-bars" }}
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{
|
||||
text: "Email Gönder", href: "mailto:emlak@garmen.com.tr"},
|
||||
{
|
||||
text: "Telefon Ara", href: "tel:+905xx-xxx-xxxx"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="Garmen Yapı İnşaat"
|
||||
leftLink={{
|
||||
text: "Gizlilik Politikası", href: "#"}}
|
||||
rightLink={{
|
||||
text: "Kullanım Şartları", href: "#"}}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user