Files
radio.org.tr/src/navigation.ts
T
Buğra 463f5e7148 Customize AstroWind theme for Amatör Radyocular Derneği (ARC)
- Configure site for ARC with YM1KTC call sign and Turkish localization
- Add ARC logo and branding elements throughout the site
- Update all content to Turkish and remove placeholder text
- Customize homepage with ARC services and information
- Add all blog posts with featured images from WordPress export
- Configure navigation and footer with ARC-specific links
- Add social media links and contact information
- Remove membership/disaster references per requirements
- Include complete image assets and blog content

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-10 00:25:26 +03:00

66 lines
2.3 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { getPermalink, getBlogPermalink, getAsset } from './utils/permalinks';
export const headerData = {
links: [
{
text: 'Hakkımızda',
href: getPermalink('/about'),
},
{
text: 'Blog',
href: getBlogPermalink(),
},
{
text: 'İletişim',
href: getPermalink('/contact'),
},
],
actions: [{ text: 'İletişim', href: getPermalink('/contact'), icon: 'tabler:mail' }],
};
export const footerData = {
links: [
{
title: 'Hızlı Linkler',
links: [
{ text: 'Hakkımızda', href: getPermalink('/about') },
{ text: 'Blog', href: getBlogPermalink() },
{ text: 'İletişim', href: getPermalink('/contact') },
],
},
{
title: 'Hizmetler',
links: [
{ text: 'Eğitim Programları', href: getPermalink('/contact') },
{ text: 'Lisans Sınavı Hazırlığı', href: getPermalink('/contact') },
{ text: 'Teknik Destek', href: getPermalink('/contact') },
{ text: 'Acil Haberleşme', href: getPermalink('/contact') },
],
},
{
title: 'İletişim',
links: [
{ text: 'E-posta: bilgi@radio.org.tr', href: 'mailto:bilgi@radio.org.tr' },
{ text: 'Telefon: +90 510 220 50 24', href: 'tel:+905102205024' },
{ text: 'Adres: Beyoğlu, İstanbul', href: getPermalink('/contact') },
{ text: 'Çağrı İşareti: YM1KTC', href: getPermalink('/contact') },
],
},
],
secondaryLinks: [
{ text: 'Gizlilik Politikası', href: getPermalink('/privacy') },
{ text: 'Kullanım Şartları', href: getPermalink('/terms') },
],
socialLinks: [
{ ariaLabel: 'Facebook', icon: 'tabler:brand-facebook', href: 'https://facebook.com/ym1ktc' },
{ ariaLabel: 'X (Twitter)', icon: 'tabler:brand-x', href: 'https://x.com/ym1ktc' },
{ ariaLabel: 'LinkedIn', icon: 'tabler:brand-linkedin', href: 'https://www.linkedin.com/company/arctr/' },
{ ariaLabel: 'YouTube', icon: 'tabler:brand-youtube', href: 'https://www.youtube.com/@YM1KTC' },
{ ariaLabel: 'Instagram', icon: 'tabler:brand-instagram', href: 'https://www.instagram.com/ym1ktc' },
{ ariaLabel: 'RSS', icon: 'tabler:rss', href: getAsset('/rss.xml') },
],
footNote: `
© 2024 Amatör Radyocular Derneği (ARC) - YM1KTC. Tüm hakları saklıdır.
`,
};