exportai / index.html
hikmet044's picture
kutunun rengini değiştir,turuncu olsun - Follow Up Deployment
4d16140 verified
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ExportAI - Türkiye'nin İhracat Penceresi</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.gradient-bg {
background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}
.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.analysis-loader {
border: 3px solid #f3f3f3;
border-top: 3px solid #3b82f6;
border-radius: 50%;
width: 30px;
height: 30px;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.nav-link {
position: relative;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: 0;
left: 0;
background-color: #3b82f6;
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
</style>
</head>
<body class="font-sans bg-gray-50">
<!-- Navigation -->
<nav class="bg-white shadow-md sticky top-0 z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<div class="flex-shrink-0 flex items-center">
<i class="fas fa-globe-europe text-blue-600 text-2xl mr-2"></i>
<span class="text-xl font-bold text-gray-900">ExportAI</span>
</div>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#features" class="nav-link text-gray-700 hover:text-blue-600 px-3 py-2 text-sm font-medium">Özellikler</a>
<a href="#about" class="nav-link text-gray-700 hover:text-blue-600 px-3 py-2 text-sm font-medium">Hakkımızda</a>
<a href="#demo" class="nav-link text-gray-700 hover:text-blue-600 px-3 py-2 text-sm font-medium">Demo</a>
<a href="#contact" class="nav-link text-gray-700 hover:text-blue-600 px-3 py-2 text-sm font-medium">İletişim</a>
</div>
<div class="flex items-center md:hidden">
<button id="mobile-menu-button" class="text-gray-500 hover:text-gray-900 focus:outline-none">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div id="mobile-menu" class="hidden md:hidden bg-white border-t border-gray-200">
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
<a href="#features" class="block px-3 py-2 text-base font-medium text-gray-700 hover:text-blue-600 hover:bg-gray-50">Özellikler</a>
<a href="#about" class="block px-3 py-2 text-base font-medium text-gray-700 hover:text-blue-600 hover:bg-gray-50">Hakkımızda</a>
<a href="#demo" class="block px-3 py-2 text-base font-medium text-gray-700 hover:text-blue-600 hover:bg-gray-50">Demo</a>
<a href="#contact" class="block px-3 py-2 text-base font-medium text-gray-700 hover:text-blue-600 hover:bg-gray-50">İletişim</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<div class="gradient-bg text-white">
<div class="max-w-7xl mx-auto py-16 px-4 sm:py-24 sm:px-6 lg:px-8">
<div class="text-center">
<h1 class="text-4xl font-extrabold tracking-tight sm:text-5xl lg:text-6xl">
İhracatçılar için Akıllı Pazar Bulucu
</h1>
<p class="mt-6 max-w-2xl mx-auto text-xl">
ExportAI, tüm sektörlerdeki ihracatçılar için geliştirilmiş yapay zeka destekli bir pazar analiz platformudur.
</p>
<div class="mt-10">
<a href="#demo" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md shadow-sm text-blue-600 bg-white hover:bg-gray-100 transition duration-300">
Ücretsiz Deneyin <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</div>
</div>
<!-- Analysis Section -->
<div class="max-w-4xl mx-auto py-12 px-4 sm:px-6 lg:px-8 bg-white rounded-lg shadow-md -mt-10 relative z-10">
<div class="text-center mb-8">
<h2 class="text-2xl font-bold text-gray-900">Ürün Analizi Yapın</h2>
<p class="mt-2 text-gray-600">Ürününüz için en uygun pazarları keşfedin</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
<div>
<label for="main-category" class="block text-sm font-medium text-gray-700 mb-1">Ana GTIP Kategorisi</label>
<select id="main-category" class="mt-1 block w-full pl-3 pr-10 py-2 text-base border-gray-300 focus:outline-none focus:ring-blue-500 focus:border-blue-500 sm:text-sm rounded-md border">
<option>Seçiniz</option>
<option>Tekstil</option>
<option>Makine</option>
<option>Gıda</option>
<option>Kimya</option>
<option>Elektronik</option>
</select>
</div>
<div>
<label for="sub-category" class="block text-sm font-medium text-gray-700 mb-1">Alt Kategori</label>
<select id="sub-category" class="mt-1 block w-full pl-3 pr-10 py-2 text-base border-gray-300 focus:outline-none focus:ring-blue-500 focus:border-blue-500 sm:text-sm rounded-md border">
<option>Seçiniz</option>
</select>
</div>
<div>
<label for="detail" class="block text-sm font-medium text-gray-700 mb-1">Detaylı Kırılım</label>
<select id="detail" class="mt-1 block w-full pl-3 pr-10 py-2 text-base border-gray-300 focus:outline-none focus:ring-blue-500 focus:border-blue-500 sm:text-sm rounded-md border">
<option>Seçiniz</option>
</select>
</div>
</div>
<div class="mt-8 text-center">
<button id="analyze-btn" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md shadow-sm text-white bg-blue-600 hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 transition duration-300">
Analiz Yap <i class="fas fa-chart-line ml-2"></i>
</button>
</div>
<div id="analysis-result" class="mt-8 hidden">
<div class="bg-blue-50 border-l-4 border-blue-400 p-4">
<div class="flex">
<div class="flex-shrink-0">
<i class="fas fa-check-circle text-blue-400 text-xl"></i>
</div>
<div class="ml-3">
<p class="text-sm text-blue-700">
Analiz başarıyla tamamlandı! <a href="#" class="font-medium text-blue-700 underline hover:text-blue-600">Sonuçları görüntüleyin</a>
</p>
</div>
</div>
</div>
</div>
<div id="analysis-loading" class="mt-8 text-center hidden">
<div class="analysis-loader mx-auto"></div>
<p class="mt-2 text-gray-600">Analiz yapılıyor...</p>
</div>
<div id="analysis-error" class="mt-8 hidden">
<div class="bg-red-50 border-l-4 border-red-400 p-4">
<div class="flex">
<div class="flex-shrink-0">
<i class="fas fa-exclamation-circle text-red-400 text-xl"></i>
</div>
<div class="ml-3">
<p class="text-sm text-red-700">
Bir hata oluştu. Lütfen tekrar deneyin.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Features Section -->
<div id="features" class="max-w-7xl mx-auto py-16 px-4 sm:py-24 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">
ExportAI ile İhracatınızı Büyütün
</h2>
<p class="mt-4 max-w-2xl mx-auto text-xl text-gray-500">
Yapay zeka destekli çözümlerimizle ihracat potansiyelinizi keşfedin
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="feature-card bg-white p-8 rounded-lg shadow-md transition duration-300">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-100 text-blue-600 mb-4">
<i class="fas fa-chess-queen text-xl"></i>
</div>
<h3 class="text-lg font-medium text-gray-900 mb-2">Akıllı Pazar Eşleştirme</h3>
<p class="mt-1 text-gray-500">
Ürünlerinizin özelliklerine göre en uygun pazarları otomatik olarak belirleriz. Yapay zeka algoritmalarımız, ürünleriniz için en yüksek potansiyele sahip ülkeleri tespit eder.
</p>
</div>
<!-- Feature 2 -->
<div class="feature-card bg-white p-8 rounded-lg shadow-md transition duration-300">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-green-100 text-green-600 mb-4">
<i class="fas fa-tags text-xl"></i>
</div>
<h3 class="text-lg font-medium text-gray-900 mb-2">Fiyat Analizi</h3>
<p class="mt-1 text-gray-500">
Hedef pazarlarda ürünleriniz için optimum fiyat aralığını belirleyin. Rekabetçi fiyatlandırma stratejinizi oluşturmak için pazar bazında detaylı fiyat analizleri sunuyoruz.
</p>
</div>
<!-- Feature 3 -->
<div class="feature-card bg-white p-8 rounded-lg shadow-md transition duration-300">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-purple-100 text-purple-600 mb-4">
<i class="fas fa-users text-xl"></i>
</div>
<h3 class="text-lg font-medium text-gray-900 mb-2">Potansiyel Alıcı Listesi</h3>
<p class="mt-1 text-gray-500">
Her sektör ve her pazar için potansiyel alıcıların iletişim bilgilerini ve ithalat hacimlerini içeren detaylı listeler sunuyoruz. İthalatçılar, toptancılar ve distribütörlerle doğrudan bağlantı kurun.
</p>
</div>
<!-- Feature 4 -->
<div class="feature-card bg-white p-8 rounded-lg shadow-md transition duration-300">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-yellow-100 text-yellow-600 mb-4">
<i class="fas fa-book text-xl"></i>
</div>
<h3 class="text-lg font-medium text-gray-900 mb-2">İhracat Rehberi</h3>
<p class="mt-1 text-gray-500">
Her ülke için ürünlerinize özel gümrük vergileri, gerekli sertifikalar, ithalat prosedürleri ve pazar trendlerini içeren kapsamlı ihracat rehberleri sunuyoruz.
</p>
</div>
<!-- Feature 5 -->
<div class="feature-card bg-white p-8 rounded-lg shadow-md transition duration-300">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-red-100 text-red-600 mb-4">
<i class="fas fa-chart-bar text-xl"></i>
</div>
<h3 class="text-lg font-medium text-gray-900 mb-2">Pazar Raporları</h3>
<p class="mt-1 text-gray-500">
Seçtiğiniz pazarlarda ürün kategoriniz için detaylı raporlar oluşturuyoruz. Mevsimsel talepler, trendler, rekabet analizi, tüketici davranışları ve dağıtım kanalları hakkında bilgi edinin.
</p>
</div>
<!-- Feature 6 -->
<div class="feature-card bg-white p-8 rounded-lg shadow-md transition duration-300">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-indigo-100 text-indigo-600 mb-4">
<i class="fas fa-robot text-xl"></i>
</div>
<h3 class="text-lg font-medium text-gray-900 mb-2">AI Chatbot Asistanı</h3>
<p class="mt-1 text-gray-500">
İhracat süreçlerinizle ilgili sorularınızı cevaplayacak akıllı chatbot asistanımız 7/24 hizmetinizde. Ürün seçiminden pazar araştırmasına kadar tüm süreçlerde destek alın.
</p>
</div>
</div>
</div>
<!-- CTA Section -->
<div class="bg-gray-900 text-white">
<div class="max-w-7xl mx-auto py-16 px-4 sm:py-24 sm:px-6 lg:px-8">
<div class="text-center">
<h2 class="text-3xl font-extrabold sm:text-4xl">
İhracatınızı Artırmaya Hazır mısınız?
</h2>
<p class="mt-6 max-w-2xl mx-auto text-xl">
ExportAI ile ihracat potansiyelinizi maksimize edin. Hemen ücretsiz deneme hesabı oluşturun.
</p>
<div class="mt-10">
<a href="#demo" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md shadow-sm text-gray-900 bg-white hover:bg-gray-100 transition duration-300">
Ücretsiz Deneyin <i class="fas fa-rocket ml-2"></i>
</a>
</div>
</div>
</div>
</div>
<!-- About Section -->
<div id="about" class="max-w-7xl mx-auto py-16 px-4 sm:py-24 sm:px-6 lg:px-8">
<div class="lg:grid lg:grid-cols-2 lg:gap-8">
<div class="mb-12 lg:mb-0">
<h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">
Hakkımızda
</h2>
<p class="mt-3 text-lg text-gray-500">
ExportAI, Türkiye'nin ihracatçıları için geliştirilmiş, yapay zeka destekli bir pazar analiz platformudur. Misyonumuz, ihracatçılarımızın yeni pazarlara açılmasını kolaylaştırmak ve ihracat potansiyellerini en üst düzeye çıkarmaktır.
</p>
<p class="mt-3 text-lg text-gray-500">
Platformumuz, BM Comtrade, TradeMap ve diğer güvenilir veri kaynaklarından elde ettiğimiz küresel ticaret verilerini, yapay zeka algoritmalarımızla analiz ederek, ihracatçılarımıza en uygun pazarları bulmalarında yardımcı olur.
</p>
<div class="mt-8">
<div class="flex items-center">
<div class="flex-shrink-0 bg-blue-500 rounded-md p-2">
<i class="fas fa-users text-white text-xl"></i>
</div>
<div class="ml-4">
<h3 class="text-lg font-medium text-gray-900">Uzman Ekip</h3>
<p class="mt-1 text-gray-500">
Çeşitli sektörlerde uzmanlaşmış veri bilimcileri, yazılım geliştiricileri ve dış ticaret uzmanlarından oluşmaktadır.
</p>
</div>
</div>
<div class="mt-6 flex items-center">
<div class="flex-shrink-0 bg-blue-500 rounded-md p-2">
<i class="fas fa-handshake text-white text-xl"></i>
</div>
<div class="ml-4">
<h3 class="text-lg font-medium text-gray-900">İşbirlikleri</h3>
<p class="mt-1 text-gray-500">
Türkiye İhracatçılar Meclisi (TİM) ve sektörel ihracatçı birlikleri ile işbirliği içinde çalışıyoruz.
</p>
</div>
</div>
</div>
</div>
<div class="lg:mt-0">
<img class="rounded-lg shadow-xl" src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=1000&q=80" alt="ExportAI Team">
</div>
</div>
</div>
<!-- Demo Section -->
<div id="demo" class="bg-gray-50">
<div class="max-w-7xl mx-auto py-16 px-4 sm:py-24 sm:px-6 lg:px-8">
<div class="lg:grid lg:grid-cols-2 lg:gap-8">
<div class="lg:mt-0 mb-12 lg:mb-0">
<img class="rounded-lg shadow-xl" src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=1000&q=80" alt="ExportAI Demo">
</div>
<div>
<h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">
Ücretsiz Demo Başvurusu
</h2>
<p class="mt-3 text-lg text-gray-500">
ExportAI'yi 30 gün boyunca ücretsiz denemek için aşağıdaki formu doldurun veya demo erişimi için giriş yapın.
</p>
<div class="mt-8 bg-white p-6 rounded-lg shadow-md">
<form>
<div class="grid grid-cols-1 gap-6">
<div>
<label for="name" class="block text-sm font-medium text-gray-700">Ad Soyad</label>
<input type="text" id="name" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500">
</div>
<div>
<label for="company" class="block text-sm font-medium text-gray-700">Şirket Adı</label>
<input type="text" id="company" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500">
</div>
<div>
<label for="email" class="block text-sm font-medium text-gray-700">E-posta</label>
<input type="email" id="email" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500">
</div>
<div>
<label for="phone" class="block text-sm font-medium text-gray-700">Telefon</label>
<input type="tel" id="phone" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500">
</div>
<div>
<label for="sector" class="block text-sm font-medium text-gray-700">Sektör</label>
<select id="sector" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500">
<option>Seçiniz</option>
<option>Tekstil</option>
<option>Makine</option>
<option>Gıda</option>
<option>Kimya</option>
<option>Elektronik</option>
</select>
</div>
<div>
<button type="submit" class="w-full flex justify-center py-3 px-4 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-blue-600 hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 transition duration-300">
Demo Erişimi İsteyin <i class="fas fa-paper-plane ml-2"></i>
</button>
</div>
</div>
</form>
<div class="mt-6">
<div class="bg-white p-6 rounded-lg shadow-md border border-gray-200">
<h3 class="text-lg font-medium text-gray-900 mb-4">Demo Girişi</h3>
<div class="grid grid-cols-1 gap-4">
<div>
<label for="username" class="block text-sm font-medium text-gray-700">Kullanıcı Adı</label>
<input type="text" id="username" value="admin" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500 bg-gray-100" readonly>
</div>
<div>
<label for="password" class="block text-sm font-medium text-gray-700">Şifre</label>
<input type="password" id="password" value="exportai2025" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500 bg-gray-100" readonly>
</div>
<div>.
<button onclick="window.location.href='/demo'" class="w-full flex justify-center py-2 px-4 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-blue-600 hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 transition duration-300">
Demo'ya Giriş Yap <i class="fas fa-sign-in-alt ml-2"></i>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer id="contact" class="bg-gray-800 text-white">
<div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div>
<h3 class="text-lg font-medium mb-4">ExportAI</h3>
<p class="text-gray-400">
Türkiye'nin ihracatçıları için yapay zeka destekli pazar analiz platformu.
</p>
<div class="mt-4 flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-twitter text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-linkedin text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-instagram text-xl"></i>
</a>
</div>
</div>
<div>
<h3 class="text-lg font-medium mb-4">İletişim</h3>
<ul class="space-y-2">
<li class="flex items-center">
<i class="fas fa-map-marker-alt text-gray-400 mr-2"></i>
<span class="text-gray-400">İstanbul, Türkiye</span>
</li>
<li class="flex items-center">
<i class="fas fa-phone text-gray-400 mr-2"></i>
<span class="text-gray-400">+90 212 123 45 67</span>
</li>
<li class="flex items-center">
<i class="fas fa-envelope text-gray-400 mr-2"></i>
<span class="text-gray-400">info@exportai.com</span>
</li>
</ul>
</div>
<div>
<h3 class="text-lg font-medium mb-4">Bülten</h3>
<p class="text-gray-400 mb-4">
İhracat trendleri ve yeniliklerimizden haberdar olmak için e-posta listemize kaydolun.
</p>
<form class="flex">
<input type="email" placeholder="E-posta adresiniz" class="px-4 py-2 rounded-l-md focus:outline-none text-gray-900 w-full">
<button type="submit" class="bg-blue-600 hover:bg-blue-700 px-4 py-2 rounded-r-md transition duration-300">
<i class="fas fa-paper-plane"></i>
</button>
</form>
</div>
</div>
<div class="mt-12 pt-8 border-t border-gray-700">
<p class="text-gray-400 text-center">
&copy; 2023 ExportAI. Tüm hakları saklıdır.
</p>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.getElementById('mobile-menu-button').addEventListener('click', function() {
const menu = document.getElementById('mobile-menu');
menu.classList.toggle('hidden');
});
// Analysis button functionality
document.getElementById('analyze-btn').addEventListener('click', function() {
const loading = document.getElementById('analysis-loading');
const result = document.getElementById('analysis-result');
const error = document.getElementById('analysis-error');
// Show loading
loading.classList.remove('hidden');
result.classList.add('hidden');
error.classList.add('hidden');
// Simulate analysis after 3 seconds
setTimeout(function() {
loading.classList.add('hidden');
// Randomly show success or error for demo purposes
if(Math.random() > 0.3) {
result.classList.remove('hidden');
} else {
error.classList.remove('hidden');
}
}, 3000);
});
// Subcategory and detail population (simplified for demo)
document.getElementById('main-category').addEventListener('change', function() {
const subCategory = document.getElementById('sub-category');
subCategory.innerHTML = '<option>Seçiniz</option>';
if(this.value !== 'Seçiniz') {
// Add some demo options
const options = ['Hazır Giyim', 'Ev Tekstili', 'Dokuma', 'Örme'];
options.forEach(option => {
const el = document.createElement('option');
el.textContent = option;
el.value = option;
subCategory.appendChild(el);
});
}
});
document.getElementById('sub-category').addEventListener('change', function() {
const detail = document.getElementById('detail');
detail.innerHTML = '<option>Seçiniz</option>';
if(this.value !== 'Seçiniz') {
// Add some demo options
const options = ['GTIP 6109', 'GTIP 6110', 'GTIP 6205', 'GTIP 6211'];
options.forEach(option => {
const el = document.createElement('option');
el.textContent = option;
el.value = option;
detail.appendChild(el);
});
}
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if(targetId === '#') return;
const targetElement = document.querySelector(targetId);
if(targetElement) {
targetElement.scrollIntoView({
behavior: 'smooth'
});
// Close mobile menu if open
const mobileMenu = document.getElementById('mobile-menu');
if(!mobileMenu.classList.contains('hidden')) {
mobileMenu.classList.add('hidden');
}
}
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=hikmet044/exportai" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>