All checks were successful
Deploy stable / deploy (push) Successful in 1m36s
V3 landing: white + violet + yellow accent, bold editorial. Markdown-driven content: 3 yarışma formatı (hands-on, ideathon, robo-soccer), 5 edisyon (Ataköy, Çemberlitaş Ideathon '25, Çemberlitaş HoC '26, İstanbul/Ankara Robo Soccer). Sayfalar: anasayfa, yarışma/edisyon detayları, sponsor, hakkımızda, iletişim. 40 Çemberlitaş fotoğrafı (1600px optimize, ~6.4 MB). Content helper (gray-matter + marked), reviews/photos registry, iletişim/ekip tek kaynak lib/contact.ts. Next.js 16 standalone build, Docker + compose hazır. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
53 lines
1.5 KiB
TypeScript
53 lines
1.5 KiB
TypeScript
export const contact = {
|
||
email: "contact@impact.tr",
|
||
emails: {
|
||
contact: "contact@impact.tr",
|
||
info: "info@impact.tr",
|
||
hello: "hello@impact.tr",
|
||
tarik: "tarik@impact.tr",
|
||
tuna: "tuna@impact.tr",
|
||
yigit: "yigit@impact.tr",
|
||
},
|
||
instagram: {
|
||
handle: "impact.tr",
|
||
url: "https://www.instagram.com/impact.tr/",
|
||
},
|
||
linkedin: {
|
||
url: "https://www.linkedin.com/company/impactcommunit/",
|
||
},
|
||
whatsapp: {
|
||
url: "https://chat.whatsapp.com/L26ZtCldCFdDJJMaorM0dm",
|
||
},
|
||
} as const;
|
||
|
||
export const site = {
|
||
name: "impact",
|
||
domain: "impact.tr",
|
||
url: "https://impact.tr",
|
||
tagline: "Bilim, teknoloji, mühendislik ve matematiği herkes için erişilebilir kılıyoruz.",
|
||
description:
|
||
"Impact, Türkiye'de STEM ekosistemini genişleten bir gençlik topluluğu. Hands-on robotik yarışmaları, ideathonlar ve eğitim programları düzenliyoruz.",
|
||
} as const;
|
||
|
||
export const team = [
|
||
{ name: "Tarık Seyhan", role: "Kurucu · Yönetim" },
|
||
{ name: "Tuna Gül", role: "Kurucu · Yönetim" },
|
||
{ name: "Yiğit Efe Erdoğmuş", role: "Kurucu · Yönetim" },
|
||
] as const;
|
||
|
||
export const values = [
|
||
"Education",
|
||
"Innovation",
|
||
"Social Responsibility",
|
||
"Future",
|
||
"Sustainability",
|
||
"Ethics",
|
||
] as const;
|
||
|
||
export const sdgs = [
|
||
{ number: 4, name: "Quality Education" },
|
||
{ number: 5, name: "Gender Equality" },
|
||
{ number: 9, name: "Industry, Innovation and Infrastructure" },
|
||
{ number: 10, name: "Reduced Inequalities" },
|
||
] as const;
|