Compare commits
27 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f8d6b55a95 | |||
| 4925a3a5b1 | |||
| f244d6f663 | |||
| 6f0008b9bb | |||
| 98ad9829f6 | |||
| 6632ac1c56 | |||
| efb8c90a7c | |||
| 5704021388 | |||
| c7a360a077 | |||
| d6679131b5 | |||
| 0c4aff4f00 | |||
| fc01341692 | |||
| 40072a8eb6 | |||
| 7fdefebe86 | |||
| 4db1fd89ec | |||
| ff4b80a52f | |||
| 898aa7bd0e | |||
| 83b44e0b26 | |||
| 2f44e04d71 | |||
| d4a971bef8 | |||
| 20a62d40ed | |||
| de15890bb8 | |||
| 09fabceb90 | |||
| 900d3b0393 | |||
| 387e287333 | |||
| 7fe65ec197 | |||
| aeeee690b9 |
135
src/app/garmen-emlak/page.tsx
Normal file
135
src/app/garmen-emlak/page.tsx
Normal file
@@ -0,0 +1,135 @@
|
|||||||
|
"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}
|
||||||
|
button={{
|
||||||
|
text: "İletişim", href: "/iletisim"}}
|
||||||
|
/>
|
||||||
|
</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>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -27,18 +27,17 @@ export default function ServicesPage() {
|
|||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
brandName="Garmen Yapı İnşaat"
|
brandName="Garmen Yapı İnşaat"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Ana Sayfa", id: "home" },
|
{ name: "Ana Sayfa", id: "/" },
|
||||||
{ name: "Kurumsal", id: "about" },
|
{ name: "Kurumsal", id: "/kurumsal" },
|
||||||
{ name: "Hizmetler", id: "services" },
|
{ name: "Hizmetler", id: "/hizmetler" },
|
||||||
{ name: "Projeler", id: "projects" },
|
{ name: "Projeler", id: "/projeler" },
|
||||||
{ name: "Garmen Emlak", id: "realestate" },
|
{ name: "Garmen Emlak", id: "/garmen-emlak" },
|
||||||
{ name: "Referanslar", id: "references" },
|
{ name: "Referanslar", id: "#references" },
|
||||||
|
{ name: "İletişim", id: "/iletisim" },
|
||||||
]}
|
]}
|
||||||
button={{
|
|
||||||
text: "İletişim",
|
|
||||||
href: "contact",
|
|
||||||
}}
|
|
||||||
animateOnLoad={true}
|
animateOnLoad={true}
|
||||||
|
button={{
|
||||||
|
text: "İletişim", href: "/iletisim"}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -53,46 +52,28 @@ export default function ServicesPage() {
|
|||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", title: "Konut İnşaatı", tags: ["İnşaat", "Konut Projeleri"],
|
||||||
title: "Konut İnşaatı",
|
imageSrc: "http://img.b2bpic.net/free-photo/developing-district-neighbourhood_23-2147694663.jpg?_wi=2", imageAlt: "Konut İnşaatı"
|
||||||
tags: ["İnşaat", "Konut Projeleri"],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/developing-district-neighbourhood_23-2147694663.jpg?_wi=2",
|
|
||||||
imageAlt: "Konut İnşaatı",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", title: "Temelden Müteahhitlik", tags: ["Taahhütlü", "Yapı"],
|
||||||
title: "Temelden Müteahhitlik",
|
imageSrc: "http://img.b2bpic.net/free-vector/skyscraper-construction-isometric-set_1284-25682.jpg?_wi=2", imageAlt: "Temelden Müteahhitlik"
|
||||||
tags: ["Taahhütlü", "Yapı"],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-vector/skyscraper-construction-isometric-set_1284-25682.jpg?_wi=2",
|
|
||||||
imageAlt: "Temelden Müteahhitlik",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", title: "Kentsel Dönüşüm", tags: ["Dönüşüm", "Planlama"],
|
||||||
title: "Kentsel Dönüşüm",
|
imageSrc: "http://img.b2bpic.net/free-photo/urban-landscape-tokyo-city-day_23-2149347177.jpg?_wi=2", imageAlt: "Kentsel Dönüşüm"
|
||||||
tags: ["Dönüşüm", "Planlama"],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/urban-landscape-tokyo-city-day_23-2149347177.jpg?_wi=2",
|
|
||||||
imageAlt: "Kentsel Dönüşüm",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", title: "Anahtar Teslim Projeler", tags: ["Malzemeli", "Bütünsel"],
|
||||||
title: "Anahtar Teslim Projeler",
|
imageSrc: "http://img.b2bpic.net/free-photo/blue-print-house-with-constructor-hat_23-2148393116.jpg?_wi=2", imageAlt: "Anahtar Teslim"
|
||||||
tags: ["Malzemeli", "Bütünsel"],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/blue-print-house-with-constructor-hat_23-2148393116.jpg?_wi=2",
|
|
||||||
imageAlt: "Anahtar Teslim",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", title: "Dış Cephe Sistemleri", tags: ["Cephe", "Estetik"],
|
||||||
title: "Dış Cephe Sistemleri",
|
imageSrc: "http://img.b2bpic.net/free-photo/building-wall-with-sky_23-2148106896.jpg?_wi=2", imageAlt: "Dış Cephe"
|
||||||
tags: ["Cephe", "Estetik"],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/building-wall-with-sky_23-2148106896.jpg?_wi=2",
|
|
||||||
imageAlt: "Dış Cephe",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "6",
|
id: "6", title: "Proje Yönetimi", tags: ["Yönetim", "Koordinasyon"],
|
||||||
title: "Proje Yönetimi",
|
imageSrc: "http://img.b2bpic.net/free-photo/architecture-concept-with-building-plans-copyspace_23-2147813102.jpg?_wi=3", imageAlt: "Proje Yönetimi"
|
||||||
tags: ["Yönetim", "Koordinasyon"],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/architecture-concept-with-building-plans-copyspace_23-2147813102.jpg?_wi=3",
|
|
||||||
imageAlt: "Proje Yönetimi",
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
@@ -112,23 +93,18 @@ export default function ServicesPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
bulletPoints={[
|
bulletPoints={[
|
||||||
{
|
{
|
||||||
title: "Konut Projeleri",
|
title: "Konut Projeleri", description: "Modern mimari ve yüksek kalite standartlarıyla hazırlanan konut projeleri", icon: Home,
|
||||||
description: "Modern mimari ve yüksek kalite standartlarıyla hazırlanan konut projeleri",
|
|
||||||
icon: Home,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Mühendislik Altyapısı",
|
title: "Mühendislik Altyapısı", description: "Sağlam mühendislik çözümleri ve teknik uzmanlık"
|
||||||
description: "Sağlam mühendislik çözümleri ve teknik uzmanlık",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Müşteri Memnuniyeti",
|
title: "Müşteri Memnuniyeti", description: "Profesyonel kadro ile zamanında ve eksiksiz proje tamamlanması"
|
||||||
description: "Profesyonel kadro ile zamanında ve eksiksiz proje tamamlanması",
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Daha Fazla Bilgi",
|
text: "Daha Fazla Bilgi", href: "/kurumsal"
|
||||||
href: "/kurumsal",
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
@@ -142,12 +118,10 @@ export default function ServicesPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Email Gönder",
|
text: "Email Gönder", href: "mailto:info@garmen.com.tr"
|
||||||
href: "mailto:info@garmen.com.tr",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: "Telefon Ara",
|
text: "Telefon Ara", href: "tel:+905xx-xxx-xxxx"
|
||||||
href: "tel:+905xx-xxx-xxxx",
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
@@ -157,12 +131,10 @@ export default function ServicesPage() {
|
|||||||
<FooterLogoReveal
|
<FooterLogoReveal
|
||||||
logoText="Garmen Yapı İnşaat"
|
logoText="Garmen Yapı İnşaat"
|
||||||
leftLink={{
|
leftLink={{
|
||||||
text: "Gizlilik Politikası",
|
text: "Gizlilik Politikası", href: "#"
|
||||||
href: "#",
|
|
||||||
}}
|
}}
|
||||||
rightLink={{
|
rightLink={{
|
||||||
text: "Kullanım Şartları",
|
text: "Kullanım Şartları", href: "#"
|
||||||
href: "#",
|
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -8,12 +8,13 @@ import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
|
|||||||
|
|
||||||
export default function ContactPage() {
|
export default function ContactPage() {
|
||||||
const navItems = [
|
const navItems = [
|
||||||
{ name: "Ana Sayfa", id: "home" },
|
{ name: "Ana Sayfa", id: "/" },
|
||||||
{ name: "Kurumsal", id: "about" },
|
{ name: "Kurumsal", id: "/kurumsal" },
|
||||||
{ name: "Hizmetler", id: "services" },
|
{ name: "Hizmetler", id: "/hizmetler" },
|
||||||
{ name: "Projeler", id: "projects" },
|
{ name: "Projeler", id: "/projeler" },
|
||||||
{ name: "Garmen Emlak", id: "realestate" },
|
{ name: "Garmen Emlak", id: "/garmen-emlak" },
|
||||||
{ name: "Referanslar", id: "references" },
|
{ name: "Referanslar", id: "#references" },
|
||||||
|
{ name: "İletişim", id: "/iletisim" },
|
||||||
];
|
];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
@@ -33,11 +34,9 @@ export default function ContactPage() {
|
|||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
brandName="Garmen Yapı İnşaat"
|
brandName="Garmen Yapı İnşaat"
|
||||||
navItems={navItems}
|
navItems={navItems}
|
||||||
button={{
|
|
||||||
text: "İletişim",
|
|
||||||
href: "/iletisim",
|
|
||||||
}}
|
|
||||||
animateOnLoad={true}
|
animateOnLoad={true}
|
||||||
|
button={{
|
||||||
|
text: "İletişim", href: "/iletisim"}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -46,17 +45,15 @@ export default function ContactPage() {
|
|||||||
text="Projeleriniz hakkında bilgi almak, iş birliği yapmak veya danışmanlık hizmeti almak için bizimle iletişime geçiniz."
|
text="Projeleriniz hakkında bilgi almak, iş birliği yapmak veya danışmanlık hizmeti almak için bizimle iletişime geçiniz."
|
||||||
animationType="entrance-slide"
|
animationType="entrance-slide"
|
||||||
background={{
|
background={{
|
||||||
variant: "gradient-bars",
|
variant: "gradient-bars"
|
||||||
}}
|
}}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Email Gönder",
|
text: "Email Gönder", href: "mailto:info@garmen.com.tr"
|
||||||
href: "mailto:info@garmen.com.tr",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: "Telefon Ara",
|
text: "Telefon Ara", href: "tel:+905xx-xxx-xxxx"
|
||||||
href: "tel:+905xx-xxx-xxxx",
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
@@ -66,12 +63,10 @@ export default function ContactPage() {
|
|||||||
<FooterLogoReveal
|
<FooterLogoReveal
|
||||||
logoText="Garmen Yapı İnşaat"
|
logoText="Garmen Yapı İnşaat"
|
||||||
leftLink={{
|
leftLink={{
|
||||||
text: "Gizlilik Politikası",
|
text: "Gizlilik Politikası", href: "#"
|
||||||
href: "#",
|
|
||||||
}}
|
}}
|
||||||
rightLink={{
|
rightLink={{
|
||||||
text: "Kullanım Şartları",
|
text: "Kullanım Şartları", href: "#"
|
||||||
href: "#",
|
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -28,18 +28,17 @@ export default function CorporatePage() {
|
|||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
brandName="Garmen Yapı İnşaat"
|
brandName="Garmen Yapı İnşaat"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Ana Sayfa", id: "home" },
|
{ name: "Ana Sayfa", id: "/" },
|
||||||
{ name: "Kurumsal", id: "about" },
|
{ name: "Kurumsal", id: "/kurumsal" },
|
||||||
{ name: "Hizmetler", id: "services" },
|
{ name: "Hizmetler", id: "/hizmetler" },
|
||||||
{ name: "Projeler", id: "projects" },
|
{ name: "Projeler", id: "/projeler" },
|
||||||
{ name: "Garmen Emlak", id: "realestate" },
|
{ name: "Garmen Emlak", id: "/garmen-emlak" },
|
||||||
{ name: "Referanslar", id: "references" },
|
{ name: "Referanslar", id: "#references" },
|
||||||
|
{ name: "İletişim", id: "/iletisim" },
|
||||||
]}
|
]}
|
||||||
button={{
|
|
||||||
text: "İletişim",
|
|
||||||
href: "contact",
|
|
||||||
}}
|
|
||||||
animateOnLoad={true}
|
animateOnLoad={true}
|
||||||
|
button={{
|
||||||
|
text: "İletişim", href: "/iletisim"}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -58,17 +57,13 @@ export default function CorporatePage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
bulletPoints={[
|
bulletPoints={[
|
||||||
{
|
{
|
||||||
title: "Güvenilirlik",
|
title: "Güvenilirlik", description: "Her zaman müşteri memnuniyetini ön planda tutarak, taahhütlerimizi zamanında yerine getiririz.", icon: Home,
|
||||||
description: "Her zaman müşteri memnuniyetini ön planda tutarak, taahhütlerimizi zamanında yerine getiririz.",
|
|
||||||
icon: Home,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Kalite",
|
title: "Kalite", description: "En iyi malzemeleri kullanarak ve profesyonel işçilikle uzun ömürlü yapılar inşa ederiz."
|
||||||
description: "En iyi malzemeleri kullanarak ve profesyonel işçilikle uzun ömürlü yapılar inşa ederiz.",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Deneyim",
|
title: "Deneyim", description: "10+ yıllık deneyimimiz, 25+ tamamlanan proje ve 150+ memnun müşteri ile kanıtlanmıştır."
|
||||||
description: "10+ yıllık deneyimimiz, 25+ tamamlanan proje ve 150+ memnun müşteri ile kanıtlanmıştır.",
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
@@ -89,16 +84,13 @@ export default function CorporatePage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
bulletPoints={[
|
bulletPoints={[
|
||||||
{
|
{
|
||||||
title: "Saydamlık ve İtimat",
|
title: "Saydamlık ve İtimat", description: "Müşterilerimizle açık iletişim kurarak, her aşamada bilgi sahibi olmalarını sağlarız."
|
||||||
description: "Müşterilerimizle açık iletişim kurarak, her aşamada bilgi sahibi olmalarını sağlarız.",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Sürdürülebilirlik",
|
title: "Sürdürülebilirlik", description: "Çevre dostu yöntemler ve malzemeler kullanarak, geleceğe karşı sorumluluğumuzu yerine getiririz."
|
||||||
description: "Çevre dostu yöntemler ve malzemeler kullanarak, geleceğe karşı sorumluluğumuzu yerine getiririz.",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "İnovation",
|
title: "İnovation", description: "Son teknolojileri takip ederek, sektördeki gelişmeleri projelerimize entegre ederiz."
|
||||||
description: "Son teknolojileri takip ederek, sektördeki gelişmeleri projelerimize entegre ederiz.",
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
@@ -114,13 +106,7 @@ export default function CorporatePage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
names={[
|
names={[
|
||||||
"Miraç Yol İnşaat A.Ş.",
|
"Miraç Yol İnşaat A.Ş.", "Gürtaş İnşaat A.Ş.", "Halil Avcı İnşaat A.Ş.", "Çankaya İnşaat A.Ş.", "TOKİ Projeleri", "Merkez İnşaat Ltd.", "Elit Yapı A.Ş."
|
||||||
"Gürtaş İnşaat A.Ş.",
|
|
||||||
"Halil Avcı İnşaat A.Ş.",
|
|
||||||
"Çankaya İnşaat A.Ş.",
|
|
||||||
"TOKİ Projeleri",
|
|
||||||
"Merkez İnşaat Ltd.",
|
|
||||||
"Elit Yapı A.Ş.",
|
|
||||||
]}
|
]}
|
||||||
speed={35}
|
speed={35}
|
||||||
showCard={true}
|
showCard={true}
|
||||||
@@ -136,12 +122,10 @@ export default function CorporatePage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Email Gönder",
|
text: "Email Gönder", href: "mailto:info@garmen.com.tr"
|
||||||
href: "mailto:info@garmen.com.tr",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: "Bizi Arayın",
|
text: "Bizi Arayın", href: "tel:+905xx-xxx-xxxx"
|
||||||
href: "tel:+905xx-xxx-xxxx",
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
@@ -152,12 +136,10 @@ export default function CorporatePage() {
|
|||||||
<FooterLogoReveal
|
<FooterLogoReveal
|
||||||
logoText="Garmen Yapı İnşaat"
|
logoText="Garmen Yapı İnşaat"
|
||||||
leftLink={{
|
leftLink={{
|
||||||
text: "Gizlilik Politikası",
|
text: "Gizlilik Politikası", href: "#"
|
||||||
href: "#",
|
|
||||||
}}
|
}}
|
||||||
rightLink={{
|
rightLink={{
|
||||||
text: "Kullanım Şartları",
|
text: "Kullanım Şartları", href: "#"
|
||||||
href: "#",
|
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
1428
src/app/layout.tsx
1428
src/app/layout.tsx
File diff suppressed because it is too large
Load Diff
150
src/app/page.tsx
150
src/app/page.tsx
@@ -32,18 +32,18 @@ export default function HomePage() {
|
|||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
brandName="Garmen Yapı İnşaat"
|
brandName="Garmen Yapı İnşaat"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Ana Sayfa", id: "home" },
|
{ name: "Ana Sayfa", id: "/" },
|
||||||
{ name: "Kurumsal", id: "about" },
|
{ name: "Kurumsal", id: "/kurumsal" },
|
||||||
{ name: "Hizmetler", id: "services" },
|
{ name: "Hizmetler", id: "/hizmetler" },
|
||||||
{ name: "Projeler", id: "projects" },
|
{ name: "Projeler", id: "/projeler" },
|
||||||
{ name: "Garmen Emlak", id: "realestate" },
|
{ name: "Garmen Emlak", id: "/garmen-emlak" },
|
||||||
{ name: "Referanslar", id: "references" },
|
{ name: "Referanslar", id: "#references" },
|
||||||
|
{ name: "İletişim", id: "/iletisim" },
|
||||||
]}
|
]}
|
||||||
button={{
|
|
||||||
text: "İletişim",
|
|
||||||
href: "contact",
|
|
||||||
}}
|
|
||||||
animateOnLoad={true}
|
animateOnLoad={true}
|
||||||
|
button={{
|
||||||
|
text: "İletişim", href: "/iletisim"
|
||||||
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -59,12 +59,10 @@ export default function HomePage() {
|
|||||||
mediaAnimation="blur-reveal"
|
mediaAnimation="blur-reveal"
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Projelerimizi Keşfedin",
|
text: "Projelerimizi İncele", href: "/projeler"
|
||||||
href: "projects",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: "Bize Ulaşın",
|
text: "Bize Ulaşın", href: "/iletisim"
|
||||||
href: "contact",
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
@@ -78,24 +76,16 @@ export default function HomePage() {
|
|||||||
description="Deneyim ve başarının ölçüsü"
|
description="Deneyim ve başarının ölçüsü"
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", value: "25+", description: "Tamamlanan Proje"
|
||||||
value: "25+",
|
|
||||||
description: "Tamamlanan Proje",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", value: "150+", description: "Mutlu Müşteri"
|
||||||
value: "150+",
|
|
||||||
description: "Mutlu Müşteri",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", value: "10+", description: "Yıllık Deneyim"
|
||||||
value: "10+",
|
|
||||||
description: "Yıllık Deneyim",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", value: "5+", description: "Kurumsal Referans"
|
||||||
value: "5+",
|
|
||||||
description: "Kurumsal Referans",
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
gridVariant="uniform-all-items-equal"
|
gridVariant="uniform-all-items-equal"
|
||||||
@@ -120,23 +110,18 @@ export default function HomePage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
bulletPoints={[
|
bulletPoints={[
|
||||||
{
|
{
|
||||||
title: "Konut Projeleri",
|
title: "Konut Projeleri", description: "Modern mimari ve yüksek kalite standartlarıyla hazırlanan konut projeleri", icon: Home,
|
||||||
description: "Modern mimari ve yüksek kalite standartlarıyla hazırlanan konut projeleri",
|
|
||||||
icon: Home,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Mühendislik Altyapısı",
|
title: "Mühendislik Altyapısı", description: "Sağlam mühendislik çözümleri ve teknik uzmanlık"
|
||||||
description: "Sağlam mühendislik çözümleri ve teknik uzmanlık",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Müşteri Memnuniyeti",
|
title: "Müşteri Memnuniyeti", description: "Profesyonel kadro ile zamanında ve eksiksiz proje tamamlanması"
|
||||||
description: "Profesyonel kadro ile zamanında ve eksiksiz proje tamamlanması",
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Daha Fazla Bilgi",
|
text: "Daha Fazla Bilgi", href: "/kurumsal"
|
||||||
href: "/kurumsal",
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
@@ -154,46 +139,28 @@ export default function HomePage() {
|
|||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", title: "Konut İnşaatı", tags: ["İnşaat", "Konut Projeleri"],
|
||||||
title: "Konut İnşaatı",
|
imageSrc: "http://img.b2bpic.net/free-photo/developing-district-neighbourhood_23-2147694663.jpg?_wi=1", imageAlt: "residential building construction apartment project"
|
||||||
tags: ["İnşaat", "Konut Projeleri"],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/developing-district-neighbourhood_23-2147694663.jpg?_wi=1",
|
|
||||||
imageAlt: "residential building construction apartment project",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", title: "Temelden Müteahhitlik", tags: ["Taahhütlü", "Yapı"],
|
||||||
title: "Temelden Müteahhitlik",
|
imageSrc: "http://img.b2bpic.net/free-vector/skyscraper-construction-isometric-set_1284-25682.jpg?_wi=1", imageAlt: "construction foundation excavation ground work"
|
||||||
tags: ["Taahhütlü", "Yapı"],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-vector/skyscraper-construction-isometric-set_1284-25682.jpg?_wi=1",
|
|
||||||
imageAlt: "construction foundation excavation ground work",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", title: "Kentsel Dönüşüm", tags: ["Dönüşüm", "Planlama"],
|
||||||
title: "Kentsel Dönüşüm",
|
imageSrc: "http://img.b2bpic.net/free-photo/urban-landscape-tokyo-city-day_23-2149347177.jpg?_wi=1", imageAlt: "urban renewal city development modern buildings"
|
||||||
tags: ["Dönüşüm", "Planlama"],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/urban-landscape-tokyo-city-day_23-2149347177.jpg?_wi=1",
|
|
||||||
imageAlt: "urban renewal city development modern buildings",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", title: "Anahtar Teslim Projeler", tags: ["Malzemeli", "Bütünsel"],
|
||||||
title: "Anahtar Teslim Projeler",
|
imageSrc: "http://img.b2bpic.net/free-photo/blue-print-house-with-constructor-hat_23-2148393116.jpg?_wi=1", imageAlt: "complete turnkey project construction ready"
|
||||||
tags: ["Malzemeli", "Bütünsel"],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/blue-print-house-with-constructor-hat_23-2148393116.jpg?_wi=1",
|
|
||||||
imageAlt: "complete turnkey project construction ready",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", title: "Dış Cephe Sistemleri", tags: ["Cephe", "Estetik"],
|
||||||
title: "Dış Cephe Sistemleri",
|
imageSrc: "http://img.b2bpic.net/free-photo/building-wall-with-sky_23-2148106896.jpg?_wi=1", imageAlt: "modern building facade exterior cladding"
|
||||||
tags: ["Cephe", "Estetik"],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/building-wall-with-sky_23-2148106896.jpg?_wi=1",
|
|
||||||
imageAlt: "modern building facade exterior cladding",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "6",
|
id: "6", title: "Proje Yönetimi", tags: ["Yönetim", "Koordinasyon"],
|
||||||
title: "Proje Yönetimi",
|
imageSrc: "http://img.b2bpic.net/free-photo/architecture-concept-with-building-plans-copyspace_23-2147813102.jpg?_wi=1", imageAlt: "construction project management team planning"
|
||||||
tags: ["Yönetim", "Koordinasyon"],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/architecture-concept-with-building-plans-copyspace_23-2147813102.jpg?_wi=1",
|
|
||||||
imageAlt: "construction project management team planning",
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
@@ -212,25 +179,13 @@ export default function HomePage() {
|
|||||||
gridVariant="three-columns-all-equal-width"
|
gridVariant="three-columns-all-equal-width"
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", name: "Çankaya Residence", price: "Tamamlandı", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-aerial-view-futuristic-city-landscape-with-roads-cars-skyscrapers-dubai-uae_231208-7583.jpg?_wi=1", imageAlt: "luxury residential complex modern buildings"
|
||||||
name: "Çankaya Residence",
|
|
||||||
price: "Tamamlandı",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-aerial-view-futuristic-city-landscape-with-roads-cars-skyscrapers-dubai-uae_231208-7583.jpg?_wi=1",
|
|
||||||
imageAlt: "luxury residential complex modern buildings",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", name: "Miraç Park Konutları", price: "Devam Ediyor", imageSrc: "http://img.b2bpic.net/free-photo/top-view-bridge_1127-3959.jpg?_wi=1", imageAlt: "residential park development green space"
|
||||||
name: "Miraç Park Konutları",
|
|
||||||
price: "Devam Ediyor",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-bridge_1127-3959.jpg?_wi=1",
|
|
||||||
imageAlt: "residential park development green space",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", name: "Kentsel Dönüşüm - B Bölgesi", price: "Tamamlandı", imageSrc: "http://img.b2bpic.net/free-photo/aerial-overhead-shot-urban-modern-business-architecture_181624-1563.jpg?_wi=1", imageAlt: "urban renewal neighborhood transformation modern"
|
||||||
name: "Kentsel Dönüşüm - B Bölgesi",
|
|
||||||
price: "Tamamlandı",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/aerial-overhead-shot-urban-modern-business-architecture_181624-1563.jpg?_wi=1",
|
|
||||||
imageAlt: "urban renewal neighborhood transformation modern",
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
@@ -251,25 +206,18 @@ export default function HomePage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
bulletPoints={[
|
bulletPoints={[
|
||||||
{
|
{
|
||||||
title: "Konut Danışmanlığı",
|
title: "Konut Danışmanlığı", description: "Konut satın alma ve kiralama konusunda profesyonel rehberlik", icon: Home,
|
||||||
description: "Konut satın alma ve kiralama konusunda profesyonel rehberlik",
|
|
||||||
icon: Home,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Arsa Değerlendirmesi",
|
title: "Arsa Değerlendirmesi", description: "Potansiyel değerlendirme ve yatırım analizi hizmetleri", icon: Landmark,
|
||||||
description: "Potansiyel değerlendirme ve yatırım analizi hizmetleri",
|
|
||||||
icon: Landmark,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Ticari Gayrimenkul",
|
title: "Ticari Gayrimenkul", description: "Ticari alanlar için güvenilir danışmanlık ve portföy yönetimi", icon: Building2,
|
||||||
description: "Ticari alanlar için güvenilir danışmanlık ve portföy yönetimi",
|
|
||||||
icon: Building2,
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Emlak Portföyümüzü İnceleyin",
|
text: "Emlak Portföyümüzü İnceleyin", href: "#"
|
||||||
href: "#",
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
@@ -285,13 +233,7 @@ export default function HomePage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
names={[
|
names={[
|
||||||
"Miraç Yol İnşaat A.Ş.",
|
"Miraç Yol İnşaat A.Ş.", "Gürtaş İnşaat A.Ş.", "Halil Avcı İnşaat A.Ş.", "Çankaya İnşaat A.Ş.", "TOKİ Projeleri", "Merkez İnşaat Ltd.", "Elit Yapı A.Ş."
|
||||||
"Gürtaş İnşaat A.Ş.",
|
|
||||||
"Halil Avcı İnşaat A.Ş.",
|
|
||||||
"Çankaya İnşaat A.Ş.",
|
|
||||||
"TOKİ Projeleri",
|
|
||||||
"Merkez İnşaat Ltd.",
|
|
||||||
"Elit Yapı A.Ş.",
|
|
||||||
]}
|
]}
|
||||||
speed={35}
|
speed={35}
|
||||||
showCard={true}
|
showCard={true}
|
||||||
@@ -307,12 +249,10 @@ export default function HomePage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Email Gönder",
|
text: "Teklif Al", href: "mailto:info@garmen.com.tr"
|
||||||
href: "mailto:info@garmen.com.tr",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: "Telefon Ara",
|
text: "Danışman Ara", href: "tel:+905xx-xxx-xxxx"
|
||||||
href: "tel:+905xx-xxx-xxxx",
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
@@ -323,12 +263,10 @@ export default function HomePage() {
|
|||||||
<FooterLogoReveal
|
<FooterLogoReveal
|
||||||
logoText="Garmen Yapı İnşaat"
|
logoText="Garmen Yapı İnşaat"
|
||||||
leftLink={{
|
leftLink={{
|
||||||
text: "Gizlilik Politikası",
|
text: "Gizlilik Politikası", href: "#"
|
||||||
href: "#",
|
|
||||||
}}
|
}}
|
||||||
rightLink={{
|
rightLink={{
|
||||||
text: "Kullanım Şartları",
|
text: "Kullanım Şartları", href: "#"
|
||||||
href: "#",
|
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -27,18 +27,17 @@ export default function ProjectsPage() {
|
|||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
brandName="Garmen Yapı İnşaat"
|
brandName="Garmen Yapı İnşaat"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Ana Sayfa", id: "home" },
|
{ name: "Ana Sayfa", id: "/" },
|
||||||
{ name: "Kurumsal", id: "about" },
|
{ name: "Kurumsal", id: "/kurumsal" },
|
||||||
{ name: "Hizmetler", id: "services" },
|
{ name: "Hizmetler", id: "/hizmetler" },
|
||||||
{ name: "Projeler", id: "projects" },
|
{ name: "Projeler", id: "/projeler" },
|
||||||
{ name: "Garmen Emlak", id: "realestate" },
|
{ name: "Garmen Emlak", id: "/garmen-emlak" },
|
||||||
{ name: "Referanslar", id: "references" },
|
{ name: "Referanslar", id: "#references" },
|
||||||
|
{ name: "İletişim", id: "/iletisim" },
|
||||||
]}
|
]}
|
||||||
button={{
|
|
||||||
text: "İletişim",
|
|
||||||
href: "contact",
|
|
||||||
}}
|
|
||||||
animateOnLoad={true}
|
animateOnLoad={true}
|
||||||
|
button={{
|
||||||
|
text: "İletişim", href: "/iletisim"}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -54,25 +53,13 @@ export default function ProjectsPage() {
|
|||||||
gridVariant="three-columns-all-equal-width"
|
gridVariant="three-columns-all-equal-width"
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", name: "Çankaya Residence", price: "Tamamlandı", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-aerial-view-futuristic-city-landscape-with-roads-cars-skyscrapers-dubai-uae_231208-7583.jpg?_wi=2", imageAlt: "Çankaya Residence Projesi"
|
||||||
name: "Çankaya Residence",
|
|
||||||
price: "Tamamlandı",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-aerial-view-futuristic-city-landscape-with-roads-cars-skyscrapers-dubai-uae_231208-7583.jpg?_wi=2",
|
|
||||||
imageAlt: "Çankaya Residence Projesi",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", name: "Miraç Park Konutları", price: "Devam Ediyor", imageSrc: "http://img.b2bpic.net/free-photo/top-view-bridge_1127-3959.jpg?_wi=2", imageAlt: "Miraç Park Konutları"
|
||||||
name: "Miraç Park Konutları",
|
|
||||||
price: "Devam Ediyor",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-bridge_1127-3959.jpg?_wi=2",
|
|
||||||
imageAlt: "Miraç Park Konutları",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", name: "Kentsel Dönüşüm - B Bölgesi", price: "Tamamlandı", imageSrc: "http://img.b2bpic.net/free-photo/aerial-overhead-shot-urban-modern-business-architecture_181624-1563.jpg?_wi=2", imageAlt: "Kentsel Dönüşüm Projesi"
|
||||||
name: "Kentsel Dönüşüm - B Bölgesi",
|
|
||||||
price: "Tamamlandı",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/aerial-overhead-shot-urban-modern-business-architecture_181624-1563.jpg?_wi=2",
|
|
||||||
imageAlt: "Kentsel Dönüşüm Projesi",
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
@@ -92,25 +79,18 @@ export default function ProjectsPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
bulletPoints={[
|
bulletPoints={[
|
||||||
{
|
{
|
||||||
title: "Konut Danışmanlığı",
|
title: "Konut Danışmanlığı", description: "Konut satın alma ve kiralama konusunda profesyonel rehberlik", icon: Home,
|
||||||
description: "Konut satın alma ve kiralama konusunda profesyonel rehberlik",
|
|
||||||
icon: Home,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Arsa Değerlendirmesi",
|
title: "Arsa Değerlendirmesi", description: "Potansiyel değerlendirme ve yatırım analizi hizmetleri", icon: Landmark,
|
||||||
description: "Potansiyel değerlendirme ve yatırım analizi hizmetleri",
|
|
||||||
icon: Landmark,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Ticari Gayrimenkul",
|
title: "Ticari Gayrimenkul", description: "Ticari alanlar için güvenilir danışmanlık ve portföy yönetimi", icon: Building2,
|
||||||
description: "Ticari alanlar için güvenilir danışmanlık ve portföy yönetimi",
|
|
||||||
icon: Building2,
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Emlak Portföyümüzü İnceleyin",
|
text: "Emlak Portföyümüzü İnceleyin", href: "#"
|
||||||
href: "#",
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
@@ -124,12 +104,10 @@ export default function ProjectsPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Email Gönder",
|
text: "Email Gönder", href: "mailto:info@garmen.com.tr"
|
||||||
href: "mailto:info@garmen.com.tr",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: "Telefon Ara",
|
text: "Telefon Ara", href: "tel:+905xx-xxx-xxxx"
|
||||||
href: "tel:+905xx-xxx-xxxx",
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
@@ -139,12 +117,10 @@ export default function ProjectsPage() {
|
|||||||
<FooterLogoReveal
|
<FooterLogoReveal
|
||||||
logoText="Garmen Yapı İnşaat"
|
logoText="Garmen Yapı İnşaat"
|
||||||
leftLink={{
|
leftLink={{
|
||||||
text: "Gizlilik Politikası",
|
text: "Gizlilik Politikası", href: "#"
|
||||||
href: "#",
|
|
||||||
}}
|
}}
|
||||||
rightLink={{
|
rightLink={{
|
||||||
text: "Kullanım Şartları",
|
text: "Kullanım Şartları", href: "#"
|
||||||
href: "#",
|
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user