File size: 9,090 Bytes
3f2ae88 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Convertly - Ultimate All-in-One File Converter</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">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#4F46E5',
secondary: '#EC4899',
accent: '#06B6D4',
dark: '#1E293B',
light: '#F8FAFC'
}
}
}
}
</script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
body {
font-family: 'Inter', sans-serif;
background-color: #F8FAFC;
transition: background-color 0.3s;
}
.dark-mode {
background-color: #0F172A;
color: #F1F5F9;
}
.file-drop-area {
border: 2px dashed #CBD5E1;
transition: all 0.3s;
}
.file-drop-area:hover, .file-drop-area.drag-over {
border-color: #4F46E5;
background-color: #F0F9FF;
}
.dark-mode .file-drop-area {
border-color: #334155;
background-color: #1E293B;
}
.dark-mode .file-drop-area:hover, .dark-mode .file-drop-area.drag-over {
border-color: #818CF8;
background-color: #1E293B;
}
.tool-card {
transition: transform 0.3s, box-shadow 0.3s;
}
.tool-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);
}
.converter-icon {
animation: float 6s ease-in-out infinite;
}
.format-icon {
animation: pulse 2s infinite;
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-15px); }
100% { transform: translateY(0px); }
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}
.progress-bar {
height: 8px;
border-radius: 4px;
background-color: #E2E8F0;
overflow: hidden;
}
.progress-fill {
height: 100%;
background: linear-gradient(90deg, #4F46E5, #EC4899);
transition: width 0.5s ease-in-out;
}
.dark-mode .progress-bar {
background-color: #334155;
}
.format-badge {
display: inline-flex;
align-items: center;
padding: 4px 12px;
border-radius: 9999px;
font-size: 0.75rem;
font-weight: 500;
background-color: #E0F2FE;
color: #0C4A6E;
}
.dark-mode .format-badge {
background-color: #083344;
color: #A5F3FC;
}
.format-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
gap: 12px;
}
@media (max-width: 768px) {
.format-grid {
grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
}
}
</style>
</head>
<body class="text-slate-800 dark:text-slate-200">
<!-- Navigation -->
<nav class="bg-white dark:bg-slate-900 shadow-sm py-4 sticky top-0 z-50">
<div class="container mx-auto px-4 flex justify-between items-center">
<div class="flex items-center">
<div class="bg-primary w-10 h-10 rounded-lg flex items-center justify-center">
<i class="fas fa-exchange-alt text-white text-xl"></i>
</div>
<span class="ml-3 text-2xl font-bold">Convertly</span>
</div>
<div class="hidden md:flex space-x-8">
<a href="#" class="font-medium hover:text-primary transition">Home</a>
<a href="#" class="font-medium hover:text-primary transition">About</a>
<a href="#" class="font-medium hover:text-primary transition">FAQ</a>
<a href="#" class="font-medium hover:text-primary transition">Contact</a>
</div>
<div class="flex items-center space-x-4">
<button id="theme-toggle" class="p-2 rounded-full hover:bg-slate-100 dark:hover:bg-slate-800">
<i class="fas fa-moon dark:hidden"></i>
<i class="fas fa-sun hidden dark:block"></i>
</button>
<button class="md:hidden">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="py-16 md:py-24">
<div class="container mx-auto px-4 flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-12 md:mb-0">
<h1 class="text-4xl md:text-6xl font-bold mb-6">Convert <span class="text-primary">any file</span> to any format</h1>
<p class="text-xl text-slate-600 dark:text-slate-400 mb-8">Super simple, beautiful, and powerful all-in-one file converter. Free, fast, and accessible for everyone.</p>
<div class="flex flex-wrap gap-4 mb-8">
<div class="bg-white dark:bg-slate-800 shadow rounded-lg py-3 px-6 flex items-center">
<i class="fas fa-bolt text-accent text-2xl mr-3"></i>
<div>
<div class="font-bold">Instant Conversion</div>
<div class="text-sm text-slate-500">No waiting time</div>
</div>
</div>
<div class="bg-white dark:bg-slate-800 shadow rounded-lg py-3 px-6 flex items-center">
<i class="fas fa-shield-alt text-secondary text-2xl mr-3"></i>
<div>
<div class="font-bold">Privacy First</div>
<div class="text-sm text-slate-500">Files auto-delete</div>
</div>
</div>
</div>
<div class="flex space-x-4">
<button class="bg-primary hover:bg-primary/90 text-white font-bold py-3 px-8 rounded-lg transition transform hover:-translate-y-1">
Start Converting
</button>
<button class="border-2 border-slate-300 dark:border-slate-700 hover:border-primary text-slate-700 dark:text-slate-300 font-bold py-3 px-8 rounded-lg transition">
Learn More
</button>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="relative">
<div class="converter-icon w-64 h-64 bg-gradient-to-br from-primary to-secondary rounded-2xl flex items-center justify-center">
<i class="fas fa-file-alt text-white text-7xl"></i>
</div>
<div class="absolute -top-6 -right-6 w-32 h-32 bg-accent rounded-2xl flex items-center justify-center transform rotate-12">
<i class="fas fa-image text-white text-4xl"></i>
</div>
<div class="absolute -bottom-6 -left-6 w-32 h-32 bg-secondary rounded-2xl flex items-center justify-center transform -rotate-12">
<i class="fas fa-music text-white text-4xl"></i>
</div>
<div class="absolute top-16 -right-20 w-20 h-20 bg-white dark:bg-slate-800 shadow-lg rounded-xl flex items-center justify-center">
<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=Kingrane/convertly" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |