Merge version_5 into main #2
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>
|
||||
);
|
||||
}
|
||||
@@ -27,17 +27,14 @@ export default function ServicesPage() {
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="Garmen Yapı İnşaat"
|
||||
navItems={[
|
||||
{ name: "Ana Sayfa", id: "home" },
|
||||
{ name: "Kurumsal", id: "about" },
|
||||
{ name: "Hizmetler", id: "services" },
|
||||
{ name: "Projeler", id: "projects" },
|
||||
{ name: "Garmen Emlak", id: "realestate" },
|
||||
{ name: "Referanslar", id: "references" },
|
||||
{ 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" },
|
||||
]}
|
||||
button={{
|
||||
text: "İletişim",
|
||||
href: "contact",
|
||||
}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
@@ -53,47 +50,23 @@ export default function ServicesPage() {
|
||||
animationType="slide-up"
|
||||
features={[
|
||||
{
|
||||
id: "1",
|
||||
title: "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: "1", title: "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",
|
||||
title: "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: "2", title: "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",
|
||||
title: "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: "3", title: "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",
|
||||
title: "Anahtar Teslim Projeler",
|
||||
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: "4", title: "Anahtar Teslim Projeler", 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",
|
||||
title: "Dış Cephe Sistemleri",
|
||||
tags: ["Cephe", "Estetik"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/building-wall-with-sky_23-2148106896.jpg?_wi=2",
|
||||
imageAlt: "Dış Cephe",
|
||||
},
|
||||
id: "5", title: "Dış Cephe Sistemleri", tags: ["Cephe", "Estetik"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/building-wall-with-sky_23-2148106896.jpg?_wi=2", imageAlt: "Dış Cephe"},
|
||||
{
|
||||
id: "6",
|
||||
title: "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",
|
||||
},
|
||||
id: "6", title: "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"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -112,24 +85,16 @@ export default function ServicesPage() {
|
||||
useInvertedBackground={true}
|
||||
bulletPoints={[
|
||||
{
|
||||
title: "Konut Projeleri",
|
||||
description: "Modern mimari ve yüksek kalite standartlarıyla hazırlanan konut projeleri",
|
||||
icon: Home,
|
||||
title: "Konut Projeleri", description: "Modern mimari ve yüksek kalite standartlarıyla hazırlanan konut projeleri", icon: Home,
|
||||
},
|
||||
{
|
||||
title: "Mühendislik Altyapısı",
|
||||
description: "Sağlam mühendislik çözümleri ve teknik uzmanlık",
|
||||
},
|
||||
title: "Mühendislik Altyapısı", description: "Sağlam mühendislik çözümleri ve teknik uzmanlık"},
|
||||
{
|
||||
title: "Müşteri Memnuniyeti",
|
||||
description: "Profesyonel kadro ile zamanında ve eksiksiz proje tamamlanması",
|
||||
},
|
||||
title: "Müşteri Memnuniyeti", description: "Profesyonel kadro ile zamanında ve eksiksiz proje tamamlanması"},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Daha Fazla Bilgi",
|
||||
href: "/kurumsal",
|
||||
},
|
||||
text: "Daha Fazla Bilgi", href: "/kurumsal"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -142,13 +107,9 @@ export default function ServicesPage() {
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{
|
||||
text: "Email Gönder",
|
||||
href: "mailto:info@garmen.com.tr",
|
||||
},
|
||||
text: "Email Gönder", href: "mailto:info@garmen.com.tr"},
|
||||
{
|
||||
text: "Telefon Ara",
|
||||
href: "tel:+905xx-xxx-xxxx",
|
||||
},
|
||||
text: "Telefon Ara", href: "tel:+905xx-xxx-xxxx"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -157,13 +118,9 @@ export default function ServicesPage() {
|
||||
<FooterLogoReveal
|
||||
logoText="Garmen Yapı İnşaat"
|
||||
leftLink={{
|
||||
text: "Gizlilik Politikası",
|
||||
href: "#",
|
||||
}}
|
||||
text: "Gizlilik Politikası", href: "#"}}
|
||||
rightLink={{
|
||||
text: "Kullanım Şartları",
|
||||
href: "#",
|
||||
}}
|
||||
text: "Kullanım Şartları", href: "#"}}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
|
||||
@@ -8,12 +8,13 @@ import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
|
||||
|
||||
export default function ContactPage() {
|
||||
const navItems = [
|
||||
{ name: "Ana Sayfa", id: "home" },
|
||||
{ name: "Kurumsal", id: "about" },
|
||||
{ name: "Hizmetler", id: "services" },
|
||||
{ name: "Projeler", id: "projects" },
|
||||
{ name: "Garmen Emlak", id: "realestate" },
|
||||
{ name: "Referanslar", id: "references" },
|
||||
{ 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" },
|
||||
];
|
||||
|
||||
return (
|
||||
@@ -33,10 +34,6 @@ export default function ContactPage() {
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="Garmen Yapı İnşaat"
|
||||
navItems={navItems}
|
||||
button={{
|
||||
text: "İletişim",
|
||||
href: "/iletisim",
|
||||
}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
@@ -46,18 +43,13 @@ 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."
|
||||
animationType="entrance-slide"
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
variant: "gradient-bars"}}
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{
|
||||
text: "Email Gönder",
|
||||
href: "mailto:info@garmen.com.tr",
|
||||
},
|
||||
text: "Email Gönder", href: "mailto:info@garmen.com.tr"},
|
||||
{
|
||||
text: "Telefon Ara",
|
||||
href: "tel:+905xx-xxx-xxxx",
|
||||
},
|
||||
text: "Telefon Ara", href: "tel:+905xx-xxx-xxxx"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -66,13 +58,9 @@ export default function ContactPage() {
|
||||
<FooterLogoReveal
|
||||
logoText="Garmen Yapı İnşaat"
|
||||
leftLink={{
|
||||
text: "Gizlilik Politikası",
|
||||
href: "#",
|
||||
}}
|
||||
text: "Gizlilik Politikası", href: "#"}}
|
||||
rightLink={{
|
||||
text: "Kullanım Şartları",
|
||||
href: "#",
|
||||
}}
|
||||
text: "Kullanım Şartları", href: "#"}}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
|
||||
@@ -28,17 +28,14 @@ export default function CorporatePage() {
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="Garmen Yapı İnşaat"
|
||||
navItems={[
|
||||
{ name: "Ana Sayfa", id: "home" },
|
||||
{ name: "Kurumsal", id: "about" },
|
||||
{ name: "Hizmetler", id: "services" },
|
||||
{ name: "Projeler", id: "projects" },
|
||||
{ name: "Garmen Emlak", id: "realestate" },
|
||||
{ name: "Referanslar", id: "references" },
|
||||
{ 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" },
|
||||
]}
|
||||
button={{
|
||||
text: "İletişim",
|
||||
href: "contact",
|
||||
}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
@@ -58,18 +55,12 @@ export default function CorporatePage() {
|
||||
useInvertedBackground={true}
|
||||
bulletPoints={[
|
||||
{
|
||||
title: "Güvenilirlik",
|
||||
description: "Her zaman müşteri memnuniyetini ön planda tutarak, taahhütlerimizi zamanında yerine getiririz.",
|
||||
icon: Home,
|
||||
title: "Güvenilirlik", description: "Her zaman müşteri memnuniyetini ön planda tutarak, taahhütlerimizi zamanında yerine getiririz.", icon: Home,
|
||||
},
|
||||
{
|
||||
title: "Kalite",
|
||||
description: "En iyi malzemeleri kullanarak ve profesyonel işçilikle uzun ömürlü yapılar inşa ederiz.",
|
||||
},
|
||||
title: "Kalite", description: "En iyi malzemeleri kullanarak ve profesyonel işçilikle uzun ömürlü yapılar inşa ederiz."},
|
||||
{
|
||||
title: "Deneyim",
|
||||
description: "10+ yıllık deneyimimiz, 25+ tamamlanan proje ve 150+ memnun müşteri ile kanıtlanmıştır.",
|
||||
},
|
||||
title: "Deneyim", description: "10+ yıllık deneyimimiz, 25+ tamamlanan proje ve 150+ memnun müşteri ile kanıtlanmıştır."},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -89,17 +80,11 @@ export default function CorporatePage() {
|
||||
useInvertedBackground={false}
|
||||
bulletPoints={[
|
||||
{
|
||||
title: "Saydamlık ve İtimat",
|
||||
description: "Müşterilerimizle açık iletişim kurarak, her aşamada bilgi sahibi olmalarını sağlarız.",
|
||||
},
|
||||
title: "Saydamlık ve İtimat", description: "Müşterilerimizle açık iletişim kurarak, her aşamada bilgi sahibi olmalarını sağlarız."},
|
||||
{
|
||||
title: "Sürdürülebilirlik",
|
||||
description: "Çevre dostu yöntemler ve malzemeler kullanarak, geleceğe karşı sorumluluğumuzu yerine getiririz.",
|
||||
},
|
||||
title: "Sürdürülebilirlik", description: "Çevre dostu yöntemler ve malzemeler kullanarak, geleceğe karşı sorumluluğumuzu yerine getiririz."},
|
||||
{
|
||||
title: "İnovation",
|
||||
description: "Son teknolojileri takip ederek, sektördeki gelişmeleri projelerimize entegre ederiz.",
|
||||
},
|
||||
title: "İnovation", description: "Son teknolojileri takip ederek, sektördeki gelişmeleri projelerimize entegre ederiz."},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -114,14 +99,7 @@ export default function CorporatePage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
names={[
|
||||
"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.Ş.",
|
||||
]}
|
||||
"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.Ş."]}
|
||||
speed={35}
|
||||
showCard={true}
|
||||
/>
|
||||
@@ -136,13 +114,9 @@ export default function CorporatePage() {
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{
|
||||
text: "Email Gönder",
|
||||
href: "mailto:info@garmen.com.tr",
|
||||
},
|
||||
text: "Email Gönder", href: "mailto:info@garmen.com.tr"},
|
||||
{
|
||||
text: "Bizi Arayın",
|
||||
href: "tel:+905xx-xxx-xxxx",
|
||||
},
|
||||
text: "Bizi Arayın", href: "tel:+905xx-xxx-xxxx"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -152,13 +126,9 @@ export default function CorporatePage() {
|
||||
<FooterLogoReveal
|
||||
logoText="Garmen Yapı İnşaat"
|
||||
leftLink={{
|
||||
text: "Gizlilik Politikası",
|
||||
href: "#",
|
||||
}}
|
||||
text: "Gizlilik Politikası", href: "#"}}
|
||||
rightLink={{
|
||||
text: "Kullanım Şartları",
|
||||
href: "#",
|
||||
}}
|
||||
text: "Kullanım Şartları", href: "#"}}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
|
||||
171
src/app/page.tsx
171
src/app/page.tsx
@@ -32,17 +32,14 @@ export default function HomePage() {
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="Garmen Yapı İnşaat"
|
||||
navItems={[
|
||||
{ name: "Ana Sayfa", id: "home" },
|
||||
{ name: "Kurumsal", id: "about" },
|
||||
{ name: "Hizmetler", id: "services" },
|
||||
{ name: "Projeler", id: "projects" },
|
||||
{ name: "Garmen Emlak", id: "realestate" },
|
||||
{ name: "Referanslar", id: "references" },
|
||||
{ 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" },
|
||||
]}
|
||||
button={{
|
||||
text: "İletişim",
|
||||
href: "contact",
|
||||
}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
@@ -59,13 +56,9 @@ export default function HomePage() {
|
||||
mediaAnimation="blur-reveal"
|
||||
buttons={[
|
||||
{
|
||||
text: "Projelerimizi Keşfedin",
|
||||
href: "projects",
|
||||
},
|
||||
text: "Projelerimizi Keşfedin", href: "/projeler"},
|
||||
{
|
||||
text: "Bize Ulaşın",
|
||||
href: "contact",
|
||||
},
|
||||
text: "Bize Ulaşın", href: "/iletisim"},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
@@ -78,25 +71,13 @@ export default function HomePage() {
|
||||
description="Deneyim ve başarının ölçüsü"
|
||||
metrics={[
|
||||
{
|
||||
id: "1",
|
||||
value: "25+",
|
||||
description: "Tamamlanan Proje",
|
||||
},
|
||||
id: "1", value: "25+", description: "Tamamlanan Proje"},
|
||||
{
|
||||
id: "2",
|
||||
value: "150+",
|
||||
description: "Mutlu Müşteri",
|
||||
},
|
||||
id: "2", value: "150+", description: "Mutlu Müşteri"},
|
||||
{
|
||||
id: "3",
|
||||
value: "10+",
|
||||
description: "Yıllık Deneyim",
|
||||
},
|
||||
id: "3", value: "10+", description: "Yıllık Deneyim"},
|
||||
{
|
||||
id: "4",
|
||||
value: "5+",
|
||||
description: "Kurumsal Referans",
|
||||
},
|
||||
id: "4", value: "5+", description: "Kurumsal Referans"},
|
||||
]}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="scale-rotate"
|
||||
@@ -120,24 +101,16 @@ export default function HomePage() {
|
||||
useInvertedBackground={true}
|
||||
bulletPoints={[
|
||||
{
|
||||
title: "Konut Projeleri",
|
||||
description: "Modern mimari ve yüksek kalite standartlarıyla hazırlanan konut projeleri",
|
||||
icon: Home,
|
||||
title: "Konut Projeleri", description: "Modern mimari ve yüksek kalite standartlarıyla hazırlanan konut projeleri", icon: Home,
|
||||
},
|
||||
{
|
||||
title: "Mühendislik Altyapısı",
|
||||
description: "Sağlam mühendislik çözümleri ve teknik uzmanlık",
|
||||
},
|
||||
title: "Mühendislik Altyapısı", description: "Sağlam mühendislik çözümleri ve teknik uzmanlık"},
|
||||
{
|
||||
title: "Müşteri Memnuniyeti",
|
||||
description: "Profesyonel kadro ile zamanında ve eksiksiz proje tamamlanması",
|
||||
},
|
||||
title: "Müşteri Memnuniyeti", description: "Profesyonel kadro ile zamanında ve eksiksiz proje tamamlanması"},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Daha Fazla Bilgi",
|
||||
href: "/kurumsal",
|
||||
},
|
||||
text: "Daha Fazla Bilgi", href: "/kurumsal"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -154,47 +127,23 @@ export default function HomePage() {
|
||||
animationType="slide-up"
|
||||
features={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Konut İnşaatı",
|
||||
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: "1", title: "Konut İnşaatı", 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",
|
||||
title: "Temelden Müteahhitlik",
|
||||
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: "2", title: "Temelden Müteahhitlik", 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",
|
||||
title: "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=1",
|
||||
imageAlt: "urban renewal city development modern buildings",
|
||||
},
|
||||
id: "3", title: "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=1", imageAlt: "urban renewal city development modern buildings"},
|
||||
{
|
||||
id: "4",
|
||||
title: "Anahtar Teslim Projeler",
|
||||
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: "4", title: "Anahtar Teslim Projeler", 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",
|
||||
title: "Dış Cephe Sistemleri",
|
||||
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: "5", title: "Dış Cephe Sistemleri", 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",
|
||||
title: "Proje Yönetimi",
|
||||
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",
|
||||
},
|
||||
id: "6", title: "Proje Yönetimi", 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"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -212,26 +161,11 @@ export default function HomePage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
products={[
|
||||
{
|
||||
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",
|
||||
},
|
||||
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"},
|
||||
{
|
||||
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",
|
||||
},
|
||||
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"},
|
||||
{
|
||||
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",
|
||||
},
|
||||
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"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -251,26 +185,18 @@ export default function HomePage() {
|
||||
useInvertedBackground={false}
|
||||
bulletPoints={[
|
||||
{
|
||||
title: "Konut Danışmanlığı",
|
||||
description: "Konut satın alma ve kiralama konusunda profesyonel rehberlik",
|
||||
icon: Home,
|
||||
title: "Konut Danışmanlığı", description: "Konut satın alma ve kiralama konusunda profesyonel rehberlik", icon: Home,
|
||||
},
|
||||
{
|
||||
title: "Arsa Değerlendirmesi",
|
||||
description: "Potansiyel değerlendirme ve yatırım analizi hizmetleri",
|
||||
icon: Landmark,
|
||||
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,
|
||||
title: "Ticari Gayrimenkul", description: "Ticari alanlar için güvenilir danışmanlık ve portföy yönetimi", icon: Building2,
|
||||
},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Emlak Portföyümüzü İnceleyin",
|
||||
href: "#",
|
||||
},
|
||||
text: "Emlak Portföyümüzü İnceleyin", href: "#"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -285,14 +211,7 @@ export default function HomePage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
names={[
|
||||
"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.Ş.",
|
||||
]}
|
||||
"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.Ş."]}
|
||||
speed={35}
|
||||
showCard={true}
|
||||
/>
|
||||
@@ -307,13 +226,9 @@ export default function HomePage() {
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{
|
||||
text: "Email Gönder",
|
||||
href: "mailto:info@garmen.com.tr",
|
||||
},
|
||||
text: "Email Gönder", href: "mailto:info@garmen.com.tr"},
|
||||
{
|
||||
text: "Telefon Ara",
|
||||
href: "tel:+905xx-xxx-xxxx",
|
||||
},
|
||||
text: "Telefon Ara", href: "tel:+905xx-xxx-xxxx"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -323,13 +238,9 @@ export default function HomePage() {
|
||||
<FooterLogoReveal
|
||||
logoText="Garmen Yapı İnşaat"
|
||||
leftLink={{
|
||||
text: "Gizlilik Politikası",
|
||||
href: "#",
|
||||
}}
|
||||
text: "Gizlilik Politikası", href: "#"}}
|
||||
rightLink={{
|
||||
text: "Kullanım Şartları",
|
||||
href: "#",
|
||||
}}
|
||||
text: "Kullanım Şartları", href: "#"}}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
|
||||
@@ -27,17 +27,14 @@ export default function ProjectsPage() {
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="Garmen Yapı İnşaat"
|
||||
navItems={[
|
||||
{ name: "Ana Sayfa", id: "home" },
|
||||
{ name: "Kurumsal", id: "about" },
|
||||
{ name: "Hizmetler", id: "services" },
|
||||
{ name: "Projeler", id: "projects" },
|
||||
{ name: "Garmen Emlak", id: "realestate" },
|
||||
{ name: "Referanslar", id: "references" },
|
||||
{ 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" },
|
||||
]}
|
||||
button={{
|
||||
text: "İletişim",
|
||||
href: "contact",
|
||||
}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
@@ -54,26 +51,11 @@ export default function ProjectsPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
products={[
|
||||
{
|
||||
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",
|
||||
},
|
||||
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"},
|
||||
{
|
||||
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ı",
|
||||
},
|
||||
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ı"},
|
||||
{
|
||||
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",
|
||||
},
|
||||
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"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -92,26 +74,18 @@ export default function ProjectsPage() {
|
||||
useInvertedBackground={false}
|
||||
bulletPoints={[
|
||||
{
|
||||
title: "Konut Danışmanlığı",
|
||||
description: "Konut satın alma ve kiralama konusunda profesyonel rehberlik",
|
||||
icon: Home,
|
||||
title: "Konut Danışmanlığı", description: "Konut satın alma ve kiralama konusunda profesyonel rehberlik", icon: Home,
|
||||
},
|
||||
{
|
||||
title: "Arsa Değerlendirmesi",
|
||||
description: "Potansiyel değerlendirme ve yatırım analizi hizmetleri",
|
||||
icon: Landmark,
|
||||
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,
|
||||
title: "Ticari Gayrimenkul", description: "Ticari alanlar için güvenilir danışmanlık ve portföy yönetimi", icon: Building2,
|
||||
},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Emlak Portföyümüzü İnceleyin",
|
||||
href: "#",
|
||||
},
|
||||
text: "Emlak Portföyümüzü İnceleyin", href: "#"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -124,13 +98,9 @@ export default function ProjectsPage() {
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{
|
||||
text: "Email Gönder",
|
||||
href: "mailto:info@garmen.com.tr",
|
||||
},
|
||||
text: "Email Gönder", href: "mailto:info@garmen.com.tr"},
|
||||
{
|
||||
text: "Telefon Ara",
|
||||
href: "tel:+905xx-xxx-xxxx",
|
||||
},
|
||||
text: "Telefon Ara", href: "tel:+905xx-xxx-xxxx"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -139,13 +109,9 @@ export default function ProjectsPage() {
|
||||
<FooterLogoReveal
|
||||
logoText="Garmen Yapı İnşaat"
|
||||
leftLink={{
|
||||
text: "Gizlilik Politikası",
|
||||
href: "#",
|
||||
}}
|
||||
text: "Gizlilik Politikası", href: "#"}}
|
||||
rightLink={{
|
||||
text: "Kullanım Şartları",
|
||||
href: "#",
|
||||
}}
|
||||
text: "Kullanım Şartları", href: "#"}}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
|
||||
Reference in New Issue
Block a user