PNG  IHDR* pHYs+ IDATx]n#; cdLb Ǚ[at¤_:uP}>!Usă cag޿ ֵNu`ݼTâabO7uL&y^wFٝA"l[|ŲHLN밪4*sG3|Dv}?+y߉{OuOAt4Jj.u]Gz*҉sP'VQKbA1u\`& Af;HWj hsO;ogTu uj7S3/QzUr&wS`M$X_L7r2;aE+ώ%vikDA:dR+%KzƉo>eOth$z%: :{WwaQ:wz%4foɹE[9<]#ERINƻv溂E%P1i01 |Jvҗ&{b?9g=^wζXn/lK::90KwrюO\!ջ3uzuGv^;騢wq<Iatv09:tt~hEG`v;3@MNZD.1]L:{ծI3`L(÷ba")Y.iljCɄae#I"1 `3*Bdz>j<fU40⨬%O$3cGt]j%Fߠ_twJ;ABU8vP3uEԑwQ V:h%))LfraqX-ۿX]v-\9I gl8tzX ]ecm)-cgʒ#Uw=Wlێn(0hPP/ӨtQ“&J35 $=]r1{tLuǮ*i0_;NƝ8;-vݏr8+U-kruȕYr0RnC]*ެ(M:]gE;{]tg(#ZJ9y>utRDRMdr9㪩̞zֹb<ģ&wzJM"iI( .ꮅX)Qw:9,i좜\Ԛi7&N0:asϓc];=ΗOӣ APqz93 y $)A*kVHZwBƺnWNaby>XMN*45~ղM6Nvm;A=jֲ.~1}(9`KJ/V F9[=`~[;sRuk]rєT!)iQO)Y$V ی ۤmzWz5IM Zb )ˆC`6 rRa}qNmUfDsWuˤV{ Pݝ'=Kֳbg,UҘVz2ﴻnjNgBb{? ߮tcsͻQuxVCIY۠:(V뺕 ٥2;t`@Fo{Z9`;]wMzU~%UA蛚dI vGq\r82iu +St`cR.6U/M9IENDB` REDROOM
PHP 5.6.40
Preview: header.php Size: 29.07 KB
/home/ankaservis/public_html/app/views/layouts/header.php

<!DOCTYPE html>
<html lang="tr">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    
    <!-- SEO Meta Tags -->
    <title><?php 
        if (isset($page_title) && !empty($page_title)) {
            // Eğer page_title içinde "|" yoksa, site adını ekle
            $title = Helper::escape($page_title);
            if (strpos($title, '|') === false) {
                $title = $title . ' | ' . APP_NAME;
            }
            echo $title;
        } else {
            echo $site_title;
        }
    ?></title>
    <meta name="description" content="<?php echo isset($page_description) ? Helper::escape($page_description) : $site_description; ?>">
    <meta name="keywords" content="<?php echo isset($page_keywords) ? Helper::escape($page_keywords) : $site_keywords; ?>">
    <meta name="author" content="<?php echo APP_NAME; ?>">
    <link rel="canonical" href="<?php echo APP_URL . $_SERVER['REQUEST_URI']; ?>">
    
    <!-- Open Graph -->
    <meta property="og:title" content="<?php 
        if (isset($page_title) && !empty($page_title)) {
            $ogTitle = Helper::escape($page_title);
            if (strpos($ogTitle, '|') === false) {
                $ogTitle = $ogTitle . ' | ' . APP_NAME;
            }
            echo $ogTitle;
        } else {
            echo $site_title;
        }
    ?>">
    <meta property="og:description" content="<?php echo isset($page_description) ? Helper::escape($page_description) : $site_description; ?>">
    <meta property="og:url" content="<?php echo APP_URL . $_SERVER['REQUEST_URI']; ?>">
    <meta property="og:type" content="website">
    <meta property="og:locale" content="tr_TR">
    <meta property="og:image" content="<?php echo APP_URL; ?>/public/images/anka-logo.png">
    <meta property="og:image:width" content="1200">
    <meta property="og:image:height" content="630">
    <meta property="og:site_name" content="<?php echo APP_NAME; ?>">
    
    <!-- Twitter Card -->
    <meta name="twitter:card" content="summary_large_image">
    <meta name="twitter:title" content="<?php 
        if (isset($page_title) && !empty($page_title)) {
            $twitterTitle = Helper::escape($page_title);
            if (strpos($twitterTitle, '|') === false) {
                $twitterTitle = $twitterTitle . ' | ' . APP_NAME;
            }
            echo $twitterTitle;
        } else {
            echo $site_title;
        }
    ?>">
    <meta name="twitter:description" content="<?php echo isset($page_description) ? Helper::escape($page_description) : $site_description; ?>">
    <meta name="twitter:image" content="<?php echo APP_URL; ?>/public/images/anka-logo.png">
    
    <!-- Favicon -->
    <link rel="icon" type="image/x-icon" href="<?php echo Helper::asset('images/favicon.ico'); ?>">
    
    <!-- Google Fonts -->
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap" rel="stylesheet">
    
    <!-- Tailwind CSS (CDN - Development) -->
    <script src="https://cdn.tailwindcss.com"></script>
    <script>
        tailwind.config = {
            darkMode: 'class',
            theme: {
                extend: {
                    colors: {
                        'anka-orange': '#e55a2b',
                        'anka-orange-dark': '#cc4a1f',
                        'anka-orange-light': '#ff7a4a',
                        'anka-gray': '#2c3e50',
                        'anka-gray-light': '#34495e',
                    },
                    fontFamily: {
                        'sans': ['Inter', 'system-ui', 'sans-serif'],
                    }
                }
            }
        }
    </script>
    <!-- Custom Styles -->
    <link rel="stylesheet" href="<?php echo Helper::asset('css/style.css'); ?>">
    
    <!-- Schema.org JSON-LD -->
    <script type="application/ld+json">
    {
        "@context": "https://schema.org",
        "@type": "LocalBusiness",
        "name": "<?php echo defined('COMPANY_NAME') ? COMPANY_NAME : APP_NAME; ?>",
        "legalName": "<?php echo defined('COMPANY_NAME') ? COMPANY_NAME : APP_NAME; ?>",
        "alternateName": "<?php echo APP_NAME; ?>",
        "url": "<?php echo APP_URL; ?>",
        "logo": "<?php echo APP_URL; ?>/public/images/anka-logo.png",
        "image": "<?php echo APP_URL; ?>/public/images/anka-logo.png",
        "telephone": "<?php echo $contact_phone; ?>",
        "email": "<?php echo $contact_email; ?>",
        "address": {
            "@type": "PostalAddress",
            "streetAddress": "<?php echo defined('CONTACT_ADDRESS') ? CONTACT_ADDRESS : 'Birlik Mah. 393 Cad. Güneş Apt. No: 53 E'; ?>",
            "addressLocality": "<?php echo defined('CONTACT_CITY') ? CONTACT_CITY : 'Çankaya'; ?>",
            "addressRegion": "Ankara",
            "postalCode": "<?php echo defined('CONTACT_POSTAL_CODE') ? CONTACT_POSTAL_CODE : ''; ?>",
            "addressCountry": "<?php echo defined('CONTACT_COUNTRY') ? CONTACT_COUNTRY : 'TR'; ?>"
        },
        "geo": {
            "@type": "GeoCoordinates",
            "latitude": "39.9334",
            "longitude": "32.8597"
        },
        "openingHoursSpecification": [
            {
                "@type": "OpeningHoursSpecification",
                "dayOfWeek": ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"],
                "opens": "08:30",
                "closes": "20:00"
            },
            {
            "@type": "OpeningHoursSpecification",
                "dayOfWeek": "Saturday",
                "opens": "09:30",
            "closes": "18:00"
            },
            {
                "@type": "OpeningHoursSpecification",
                "dayOfWeek": "Sunday",
                "opens": "00:00",
                "closes": "23:59"
            }
        ],
        "priceRange": "$$",
        "areaServed": {
            "@type": "City",
            "name": "Ankara"
        },
        "hasOfferCatalog": {
            "@type": "OfferCatalog",
            "name": "Servis Hizmetleri",
            "itemListElement": [
                {
                    "@type": "Offer",
                    "itemOffered": {
                        "@type": "Service",
                        "name": "Beyaz Eşya Servisi",
                        "description": "Buzdolabı, çamaşır makinesi, bulaşık makinesi ve tüm beyaz eşya arıza ve bakım hizmetleri"
                    }
                },
                {
                    "@type": "Offer",
                    "itemOffered": {
                        "@type": "Service",
                        "name": "Kombi ve Klima Servisi",
                        "description": "Kombi ve klima arıza, bakım ve montaj hizmetleri"
                    }
                },
                {
                    "@type": "Offer",
                    "itemOffered": {
                        "@type": "Service",
                        "name": "Televizyon Servisi",
                        "description": "LED, LCD, OLED ve tüm televizyon markalarında servis hizmeti"
                    }
                }
            ]
        }
    }
    </script>
    
    <!-- AMP Link -->
    <?php 
    $currentUri = $_SERVER['REQUEST_URI'] ?? '/';
    // Query string'i kaldır
    if (($pos = strpos($currentUri, '?')) !== false) {
        $currentUri = substr($currentUri, 0, $pos);
    }
    // Trailing slash'i kaldır (ana sayfa hariç)
    $currentUri = rtrim($currentUri, '/');
    if (empty($currentUri)) {
        $currentUri = '/';
    }
    
    // Aktif menü kontrolü için fonksiyon
    function isActive($uri, $path) {
        if ($path === '/' && $uri === '/') {
            return true;
        }
        if ($path !== '/' && strpos($uri, $path) === 0) {
            return true;
        }
        return false;
    }
    
    // Sadece ana sayfa ve hizmetler için AMP linki göster
    $ampRoutes = ['/', '/hizmetler'];
    if (!preg_match('#^/amp/#', $currentUri) && in_array($currentUri, $ampRoutes)): 
        $ampUrl = ($currentUri === '/') ? '/amp' : '/amp' . $currentUri;
    ?>
    <link rel="amphtml" href="<?php echo APP_URL . $ampUrl; ?>">
    <?php endif; ?>
    
    <!-- Google Tag Manager -->
    <?php if (defined('GTM_ID') && !empty(GTM_ID)): ?>
    <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
    new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
    j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
    'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
    })(window,document,'script','dataLayer','<?php echo GTM_ID; ?>');</script>
    <?php endif; ?>
</head>
<body class="bg-white dark:bg-gray-900 transition-colors duration-300">
    <!-- Google Tag Manager (noscript) -->
    <?php if (defined('GTM_ID') && !empty(GTM_ID)): ?>
    <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=<?php echo GTM_ID; ?>"
    height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
    <?php endif; ?>
    <!-- End Google Tag Manager (noscript) -->
    
    <header class="bg-white dark:bg-gray-800 shadow-md sticky top-0 z-50 border-b border-gray-200 dark:border-gray-700 transition-colors duration-300">
        <!-- Top Bar -->
        <div class="bg-gradient-to-r from-anka-orange-dark to-anka-orange py-2.5 hidden md:block">
            <div class="container mx-auto px-4">
                <div class="flex justify-between items-center text-white text-sm">
                    <div class="flex items-center space-x-6">
                        <div class="font-bold text-xs uppercase tracking-wider">
                            <?php echo defined('COMPANY_NAME') ? COMPANY_NAME : ''; ?>
                        </div>
                        <span class="text-white/40">|</span>
                        <a href="tel:<?php echo str_replace(' ', '', $contact_phone); ?>" class="flex items-center space-x-2 hover:text-orange-100 transition-colors group">
                            <svg class="w-4 h-4 group-hover:scale-110 transition-transform" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                                <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"></path>
                            </svg>
                            <span class="font-semibold"><?php echo $contact_phone; ?></span>
                        </a>
                        <a href="mailto:<?php echo $contact_email; ?>" class="flex items-center space-x-2 hover:text-orange-100 transition-colors group">
                            <svg class="w-4 h-4 group-hover:scale-110 transition-transform" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                                <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"></path>
                            </svg>
                            <span><?php echo $contact_email; ?></span>
                        </a>
                    </div>
                    <div class="flex items-center space-x-4 text-xs font-medium">
                        <span class="flex items-center space-x-1">
                            <svg class="w-3.5 h-3.5" fill="currentColor" viewBox="0 0 20 20">
                                <path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd"></path>
                            </svg>
                            <span>Çağrı Merkezi Hizmetimiz Açık</span>
                        </span>
                        <span class="hidden lg:inline text-white/60">|</span>
                        <span class="hidden lg:inline">Ankara Geneli Hizmet</span>
                    </div>
                </div>
            </div>
        </div>
        
        <!-- Main Header -->
        <div class="container mx-auto px-4">
            <div class="flex items-center justify-between py-2 md:py-4">
                <!-- Logo -->
                <div class="flex items-center flex-shrink-0">
                    <a href="<?php echo Helper::url('/'); ?>" class="flex items-center group">
                        <?php if (file_exists(APP_PATH . '/public/images/anka-logo.png')): ?>
                            <div class="relative border-2 border-white rounded-lg p-1.5 md:p-2 transition-all duration-300">
                                <img src="<?php echo Helper::asset('images/anka-logo.png'); ?>" alt="<?php echo APP_NAME; ?>" class="h-10 md:h-14 w-auto transition-all duration-300 group-hover:scale-105 brightness-110 contrast-110">
                            </div>
                        <?php endif; ?>
                </a>
            </div>
                
                <!-- Desktop Navigation -->
                <nav class="hidden lg:flex items-center space-x-1 flex-1 justify-center">
                    <?php $isActive = isActive($currentUri, '/'); ?>
                    <a href="<?php echo Helper::url('/'); ?>" class="relative px-4 py-2.5 <?php echo $isActive ? 'text-anka-orange' : 'text-gray-700 dark:text-gray-200 hover:text-anka-orange'; ?> font-medium transition-all group rounded-lg hover:bg-gray-50 dark:hover:bg-gray-700/50">
                        <span class="relative z-10">Ana Sayfa</span>
                        <span class="absolute bottom-1 left-1/2 transform -translate-x-1/2 <?php echo $isActive ? 'w-3/4' : 'w-0 group-hover:w-3/4'; ?> h-0.5 bg-anka-orange transition-all rounded-full"></span>
                    </a>
                    <?php $isActive = isActive($currentUri, '/hakkimizda'); ?>
                    <a href="<?php echo Helper::url('/hakkimizda'); ?>" class="relative px-4 py-2.5 <?php echo $isActive ? 'text-anka-orange' : 'text-gray-700 dark:text-gray-200 hover:text-anka-orange'; ?> font-medium transition-all group rounded-lg hover:bg-gray-50 dark:hover:bg-gray-700/50">
                        <span class="relative z-10">Hakkımızda</span>
                        <span class="absolute bottom-1 left-1/2 transform -translate-x-1/2 <?php echo $isActive ? 'w-3/4' : 'w-0 group-hover:w-3/4'; ?> h-0.5 bg-anka-orange transition-all rounded-full"></span>
                    </a>
                    <?php $isActive = isActive($currentUri, '/sirket-bilgileri'); ?>
                    <a href="<?php echo Helper::url('/sirket-bilgileri'); ?>" class="relative px-4 py-2.5 <?php echo $isActive ? 'text-anka-orange' : 'text-gray-700 dark:text-gray-200 hover:text-anka-orange'; ?> font-medium transition-all group rounded-lg hover:bg-gray-50 dark:hover:bg-gray-700/50">
                        <span class="relative z-10">Şirket Bilgileri</span>
                        <span class="absolute bottom-1 left-1/2 transform -translate-x-1/2 <?php echo $isActive ? 'w-3/4' : 'w-0 group-hover:w-3/4'; ?> h-0.5 bg-anka-orange transition-all rounded-full"></span>
                    </a>
                    <?php $isActive = isActive($currentUri, '/hizmetler'); ?>
                    <a href="<?php echo Helper::url('/hizmetler'); ?>" class="relative px-4 py-2.5 <?php echo $isActive ? 'text-anka-orange' : 'text-gray-700 dark:text-gray-200 hover:text-anka-orange'; ?> font-medium transition-all group rounded-lg hover:bg-gray-50 dark:hover:bg-gray-700/50">
                        <span class="relative z-10">Hizmetler</span>
                        <span class="absolute bottom-1 left-1/2 transform -translate-x-1/2 <?php echo $isActive ? 'w-3/4' : 'w-0 group-hover:w-3/4'; ?> h-0.5 bg-anka-orange transition-all rounded-full"></span>
                    </a>
                    <?php $isActive = isActive($currentUri, '/fiyat-listesi'); ?>
                    <a href="<?php echo Helper::url('/fiyat-listesi'); ?>" class="relative px-4 py-2.5 <?php echo $isActive ? 'text-anka-orange' : 'text-gray-700 dark:text-gray-200 hover:text-anka-orange'; ?> font-medium transition-all group rounded-lg hover:bg-gray-50 dark:hover:bg-gray-700/50">
                        <span class="relative z-10">Fiyat Listesi</span>
                        <span class="absolute bottom-1 left-1/2 transform -translate-x-1/2 <?php echo $isActive ? 'w-3/4' : 'w-0 group-hover:w-3/4'; ?> h-0.5 bg-anka-orange transition-all rounded-full"></span>
                    </a>
                    <?php $isActive = isActive($currentUri, '/cozum-merkezi'); ?>
                    <a href="<?php echo Helper::url('/cozum-merkezi'); ?>" class="relative px-4 py-2.5 <?php echo $isActive ? 'text-anka-orange' : 'text-gray-700 dark:text-gray-200 hover:text-anka-orange'; ?> font-medium transition-all group rounded-lg hover:bg-gray-50 dark:hover:bg-gray-700/50">
                        <span class="relative z-10">Çözüm Merkezi</span>
                        <span class="absolute bottom-1 left-1/2 transform -translate-x-1/2 <?php echo $isActive ? 'w-3/4' : 'w-0 group-hover:w-3/4'; ?> h-0.5 bg-anka-orange transition-all rounded-full"></span>
                    </a>
                    <?php $isActive = isActive($currentUri, '/iletisim'); ?>
                    <a href="<?php echo Helper::url('/iletisim'); ?>" class="relative px-4 py-2.5 <?php echo $isActive ? 'text-anka-orange' : 'text-gray-700 dark:text-gray-200 hover:text-anka-orange'; ?> font-medium transition-all group rounded-lg hover:bg-gray-50 dark:hover:bg-gray-700/50">
                        <span class="relative z-10">İletişim</span>
                        <span class="absolute bottom-1 left-1/2 transform -translate-x-1/2 <?php echo $isActive ? 'w-3/4' : 'w-0 group-hover:w-3/4'; ?> h-0.5 bg-anka-orange transition-all rounded-full"></span>
                    </a>
                </nav>
                
                <!-- Right Actions -->
                <div class="flex items-center space-x-2 flex-shrink-0">
                    <a href="tel:<?php echo str_replace(' ', '', $contact_phone); ?>" class="hidden lg:flex items-center space-x-2 bg-gradient-to-r from-anka-orange-dark to-anka-orange text-white px-5 py-2.5 rounded-lg hover:from-anka-orange hover:to-anka-orange-light transition-all font-semibold shadow-md hover:shadow-lg transform hover:-translate-y-0.5 text-sm">
                        <svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"></path>
                        </svg>
                        <span><?php echo $contact_phone; ?></span>
                    </a>
                    
                    <!-- Mobil Telefon Butonu -->
                    <a href="tel:<?php echo str_replace(' ', '', $contact_phone); ?>" class="lg:hidden flex items-center space-x-1.5 bg-gradient-to-r from-anka-orange-dark to-anka-orange text-white px-3 py-1.5 rounded-lg hover:from-anka-orange hover:to-anka-orange-light transition-all font-semibold shadow-md text-xs">
                        <svg class="w-3.5 h-3.5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"></path>
                        </svg>
                        <span><?php echo $contact_phone; ?></span>
                    </a>
                    
                    <!-- Mobil Menü Butonu -->
                    <button id="mobile-menu-btn" class="lg:hidden p-2 text-gray-600 dark:text-gray-300 hover:text-anka-orange hover:bg-gray-100 dark:hover:bg-gray-700 rounded-lg transition-all duration-200" aria-label="Menü">
                        <svg id="menu-icon" class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path>
                        </svg>
                        <svg id="close-icon" class="w-5 h-5 hidden" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12"></path>
                        </svg>
                </button>
                </div>
            </div>
            
            <!-- Mobil Menü -->
            <div id="mobile-menu" class="hidden lg:hidden pb-3 border-t border-gray-200 dark:border-gray-700 mt-1 animate-slide-down">
                <nav class="flex flex-col space-y-1 pt-2">
                    <?php $isActive = isActive($currentUri, '/'); ?>
                    <a href="<?php echo Helper::url('/'); ?>" class="px-4 py-2 <?php echo $isActive ? 'bg-anka-orange text-white' : 'text-gray-700 dark:text-gray-200 hover:bg-anka-orange hover:text-white'; ?> rounded-lg transition-all font-medium flex items-center space-x-2 text-sm">
                        <svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 12l2-2m0 0l7-7 7 7M5 10v10a1 1 0 001 1h3m10-11l2 2m-2-2v10a1 1 0 01-1 1h-3m-6 0a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1m-6 0h6"></path>
                        </svg>
                        <span>Ana Sayfa</span>
                    </a>
                    <?php $isActive = isActive($currentUri, '/hakkimizda'); ?>
                    <a href="<?php echo Helper::url('/hakkimizda'); ?>" class="px-4 py-2 <?php echo $isActive ? 'bg-anka-orange text-white' : 'text-gray-700 dark:text-gray-200 hover:bg-anka-orange hover:text-white'; ?> rounded-lg transition-all font-medium flex items-center space-x-2 text-sm">
                        <svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"></path>
                        </svg>
                        <span>Hakkımızda</span>
                    </a>
                    <?php $isActive = isActive($currentUri, '/sirket-bilgileri'); ?>
                    <a href="<?php echo Helper::url('/sirket-bilgileri'); ?>" class="px-4 py-2 <?php echo $isActive ? 'bg-anka-orange text-white' : 'text-gray-700 dark:text-gray-200 hover:bg-anka-orange hover:text-white'; ?> rounded-lg transition-all font-medium flex items-center space-x-2 text-sm">
                        <svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 21V5a2 2 0 00-2-2H7a2 2 0 00-2 2v16m14 0h2m-2 0h-5m-9 0H3m2 0h5M9 7h1m-1 4h1m4-4h1m-1 4h1m-5 10v-5a1 1 0 011-1h2a1 1 0 011 1v5m-4 0h4"></path>
                        </svg>
                        <span>Şirket Bilgileri</span>
                    </a>
                    <?php $isActive = isActive($currentUri, '/hizmetler'); ?>
                    <a href="<?php echo Helper::url('/hizmetler'); ?>" class="px-4 py-2 <?php echo $isActive ? 'bg-anka-orange text-white' : 'text-gray-700 dark:text-gray-200 hover:bg-anka-orange hover:text-white'; ?> rounded-lg transition-all font-medium flex items-center space-x-2 text-sm">
                        <svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19.428 15.428a2 2 0 00-1.022-.547l-2.387-.477a6 6 0 00-3.86.517l-.318.158a6 6 0 01-3.86.517L6.05 15.21a2 2 0 00-1.806.547M8 4h8l-1 1v5.172a2 2 0 00.586 1.414l5 5c1.26 1.26.367 3.414-1.415 3.414H4.828c-1.782 0-2.674-2.154-1.414-3.414l5-5A2 2 0 009 10.172V5L8 4z"></path>
                        </svg>
                        <span>Hizmetler</span>
                    </a>
                    <?php $isActive = isActive($currentUri, '/fiyat-listesi'); ?>
                    <a href="<?php echo Helper::url('/fiyat-listesi'); ?>" class="px-4 py-2 <?php echo $isActive ? 'bg-anka-orange text-white' : 'text-gray-700 dark:text-gray-200 hover:bg-anka-orange hover:text-white'; ?> rounded-lg transition-all font-medium flex items-center space-x-2 text-sm">
                        <svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 7h6m0 10v-3m-3 3h.01M9 17h.01M9 14h.01M12 14h.01M15 11h.01M12 11h.01M9 11h.01M7 21h10a2 2 0 002-2V5a2 2 0 00-2-2H7a2 2 0 00-2 2v14a2 2 0 002 2z"></path>
                        </svg>
                        <span>Fiyat Listesi</span>
                    </a>
                    <?php $isActive = isActive($currentUri, '/cozum-merkezi'); ?>
                    <a href="<?php echo Helper::url('/cozum-merkezi'); ?>" class="px-4 py-2 <?php echo $isActive ? 'bg-anka-orange text-white' : 'text-gray-700 dark:text-gray-200 hover:bg-anka-orange hover:text-white'; ?> rounded-lg transition-all font-medium flex items-center space-x-2 text-sm">
                        <svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"></path>
                        </svg>
                        <span>Çözüm Merkezi</span>
                    </a>
                    <?php $isActive = isActive($currentUri, '/iletisim'); ?>
                    <a href="<?php echo Helper::url('/iletisim'); ?>" class="px-4 py-2 <?php echo $isActive ? 'bg-anka-orange text-white' : 'text-gray-700 dark:text-gray-200 hover:bg-anka-orange hover:text-white'; ?> rounded-lg transition-all font-medium flex items-center space-x-2 text-sm">
                        <svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"></path>
                        </svg>
                        <span>İletişim</span>
                    </a>
                    <div class="pt-2 space-y-2">
                        <a href="tel:03124660667" class="flex items-center justify-center space-x-2 bg-gradient-to-r from-anka-orange-dark to-anka-orange text-white px-4 py-2 rounded-lg font-semibold shadow-md text-sm">
                            <svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                                <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"></path>
                            </svg>
                            <span>Hemen Ara</span>
                        </a>
                        <a href="<?php echo Helper::url('/iletisim/servis-formu'); ?>" class="flex items-center justify-center space-x-2 bg-white dark:bg-gray-700 border-2 border-anka-orange text-anka-orange px-4 py-2 rounded-lg font-semibold text-sm hover:bg-anka-orange hover:text-white transition-all">
                            <svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                                <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"></path>
                            </svg>
                            <span>Servis Formu</span>
                        </a>
                        <a href="tel:<?php echo str_replace(' ', '', $contact_phone); ?>" class="flex items-center justify-center space-x-2 bg-gray-100 dark:bg-gray-700 text-gray-700 dark:text-gray-200 px-4 py-2 rounded-lg font-semibold text-sm hover:bg-gray-200 dark:hover:bg-gray-600 transition-all">
                            <svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                                <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"></path>
                            </svg>
                            <span><?php echo $contact_phone; ?></span>
                        </a>
                    </div>
                </nav>
            </div>
        </div>
    </header>

    <main class="site-main">

Directory Contents

Dirs: 0 × Files: 2

Name Size Perms Modified Actions
18.51 KB lrw-r--r-- 2025-11-17 19:50:48
Edit Download
29.07 KB lrw-r--r-- 2025-12-03 22:27:06
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).
© 2026 REDROOM — Secure File Manager. All rights reserved. Built with ❤️ & Red Dark UI