feat: update branding, SEO, slugs and social links for Fethiye location

This commit is contained in:
2026-04-16 00:29:50 +03:00
parent b72fbc7ae8
commit b675fff437
8 changed files with 213 additions and 104 deletions

View File

@@ -1,5 +1,6 @@
export interface Project {
id: number;
slug: string;
year: string;
location: string;
title: string;
@@ -10,6 +11,7 @@ export interface Project {
export const projects: Project[] = [
{
id: 1,
slug: 'jdhm-genel-merkez',
year: '2018',
location: 'SAINT-AUGUSTIN-DE-DESMAURES',
title: 'JDHM GENEL MERKEZ',
@@ -18,6 +20,7 @@ export const projects: Project[] = [
},
{
id: 2,
slug: 'sale',
year: '2019',
location: 'MONTREAL, QC',
title: 'ŞALE',
@@ -26,22 +29,17 @@ export const projects: Project[] = [
},
{
id: 3,
slug: 'modern-muze',
year: '2020',
location: 'QUEBEC CITY, QC',
title: 'MODERN MÜZE',
image: 'https://images.unsplash.com/photo-1511818966892-d7d671e672a2?q=80&w=2070&auto=format&fit=crop',
category: 'Kültürel'
},
{
id: 4,
year: '2021',
location: 'TORONTO, ON',
title: 'ŞEHİR KULESİ',
image: 'https://images.unsplash.com/photo-1449156001533-cb39414bb589?q=80&w=2070&auto=format&fit=crop',
category: 'Konut'
},
{
id: 5,
slug: 'orman-evi',
year: '2022',
location: 'VANCOUVER, BC',
title: 'ORMAN EVİ',
@@ -49,7 +47,8 @@ export const projects: Project[] = [
category: 'Konut'
},
{
id: 6,
id: 5,
slug: 'kocina',
year: '2023',
location: 'SAINTE-FOY, QC',
title: 'KOCINA',
@@ -57,7 +56,8 @@ export const projects: Project[] = [
category: 'Ticari'
},
{
id: 7,
id: 6,
slug: 'yamac-evi',
year: '2022',
location: 'MONT-TREMBLANT, QC',
title: 'YAMAÇ EVİ',
@@ -65,7 +65,8 @@ export const projects: Project[] = [
category: 'Konut'
},
{
id: 8,
id: 7,
slug: 'makusham-studyo',
year: '2021',
location: 'LÉVIS, QC',
title: 'MAKUSHAM STÜDYO',
@@ -73,19 +74,13 @@ export const projects: Project[] = [
category: 'Kültürel'
},
{
id: 9,
id: 8,
slug: 'must-societe',
year: '2023',
location: 'BROSSARD, QC',
title: 'MUST SOCIÉTÉ',
image: 'https://images.unsplash.com/photo-1504384308090-c894fdcc538d?q=80&w=2070&auto=format&fit=crop',
category: 'Ticari'
},
{
id: 10,
year: '2022',
location: 'RIMOUSKI, QC',
title: 'GÖL KENARI KULÜBESİ',
image: 'https://images.unsplash.com/photo-1449156001533-cb39414bb589?q=80&w=2070&auto=format&fit=crop',
category: 'Konut'
}
];