mirror of
https://github.com/multipleof4/4ev.link.git
synced 2026-01-13 15:57:53 +00:00
96 lines
6.0 KiB
HTML
96 lines
6.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>4ev.link - Simple & Fast URL Shortener</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/lucide@latest/dist/umd/lucide.min.js"></script>
|
|
<style>
|
|
body { font-family: 'Inter', sans-serif; }
|
|
[x-cloak] { display: none !important; }
|
|
</style>
|
|
<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;700&display=swap" rel="stylesheet">
|
|
</head>
|
|
<body class="bg-gray-50 text-gray-800 antialiased">
|
|
<div class="flex flex-col items-center justify-center min-h-screen p-4">
|
|
<main class="w-full max-w-2xl mx-auto space-y-12">
|
|
<header class="text-center">
|
|
<h1 class="text-5xl font-bold tracking-tight text-gray-900">4ev.link</h1>
|
|
<p class="mt-3 text-lg text-gray-600">Shorten. Share. Forever.</p>
|
|
</header>
|
|
|
|
<div x-data="urlShortener()" class="bg-white p-6 sm:p-8 rounded-xl shadow-md">
|
|
<form @submit.prevent="shorten()">
|
|
<div class="flex flex-col sm:flex-row gap-3">
|
|
<label for="url-input" class="sr-only">URL to shorten</label>
|
|
<input x-model="longUrl" type="url" id="url-input" placeholder="https://your-long-url.com/goes-here" required class="flex-grow w-full px-4 py-3 bg-gray-100 border border-gray-200 rounded-lg focus:ring-2 focus:ring-gray-600 focus:outline-none transition">
|
|
<button type="submit" :disabled="loading" class="inline-flex items-center justify-center px-6 py-3 font-semibold text-white bg-gray-800 rounded-lg hover:bg-gray-700 focus:outline-none focus:ring-2 focus:ring-gray-800 focus:ring-offset-2 disabled:bg-gray-400 transition">
|
|
<i x-show="loading" x-cloak class="animate-spin -ml-1 mr-3 h-5 w-5" data-lucide="loader-2"></i>
|
|
<span x-text="loading ? 'Working...' : 'Shorten Link'">Shorten Link</span>
|
|
</button>
|
|
</div>
|
|
</form>
|
|
|
|
<div x-show="error" x-cloak class="mt-4 p-3 text-sm text-red-700 bg-red-100 rounded-lg" x-text="error"></div>
|
|
<div x-show="result" x-cloak class="mt-4 p-3 bg-gray-100 rounded-lg">
|
|
<div class="flex items-center justify-between gap-4">
|
|
<a :href="result?.shortUrl" x-text="result?.shortUrl" target="_blank" class="font-mono text-gray-700 hover:underline truncate"></a>
|
|
<button @click="copyToClipboard(result?.shortUrl)" class="flex-shrink-0 inline-flex items-center justify-center gap-2 px-3 py-1.5 text-sm font-medium text-gray-600 bg-white border border-gray-200 rounded-md hover:bg-gray-50">
|
|
<i :class="{'text-green-500': copied}" :data-lucide="copied ? 'check' : 'copy'" class="w-4 h-4"></i>
|
|
<span x-text="copied ? 'Copied!' : 'Copy'">Copy</span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 pt-4">
|
|
<div class="bg-white border border-gray-200 rounded-xl p-6 text-center">
|
|
<div class="inline-flex items-center justify-center w-12 h-12 bg-gray-100 rounded-lg mb-4"><i data-lucide="shuffle" class="w-6 h-6 text-gray-700"></i></div>
|
|
<h3 class="text-xl font-bold text-gray-800">Free Plan</h3>
|
|
<p class="mt-2 text-gray-600">Perfect for quick sharing. Get a random, memorable short URL instantly and for free.</p>
|
|
</div>
|
|
<div class="bg-white border-2 border-gray-800 rounded-xl p-6 text-center shadow-lg">
|
|
<div class="inline-flex items-center justify-center w-12 h-12 bg-gray-800 rounded-lg mb-4"><i data-lucide="crown" class="w-6 h-6 text-white"></i></div>
|
|
<h3 class="text-xl font-bold text-gray-800">Paid Plan</h3>
|
|
<p class="mt-2 text-gray-600">Brand your links with custom slugs. More control for professionals and businesses.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<footer class="text-center text-gray-500 text-sm !mt-16">
|
|
<p>© <span x-text="new Date().getFullYear()"></span> 4ev.link</p>
|
|
</footer>
|
|
</main>
|
|
</div>
|
|
|
|
<script>
|
|
document.addEventListener('alpine:init', () => {
|
|
Alpine.data('urlShortener', () => ({
|
|
longUrl: '', result: null, loading: false, error: '', copied: false,
|
|
async shorten() {
|
|
this.loading = true; this.error = ''; this.result = null; this.copied = false;
|
|
try {
|
|
new URL(this.longUrl);
|
|
const r = await fetch('/', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ url: this.longUrl }) });
|
|
if (!r.ok) throw new Error(await r.text() || 'Server error');
|
|
this.result = await r.json(); this.longUrl = '';
|
|
} catch (e) { this.error = e.message.includes('Invalid URL') ? 'Please enter a valid URL.' : 'An unexpected error occurred.'; }
|
|
finally { this.loading = false; this.$nextTick(() => lucide.createIcons()); }
|
|
},
|
|
copyToClipboard(text) {
|
|
navigator.clipboard.writeText(text).then(() => {
|
|
this.copied = true;
|
|
setTimeout(() => this.copied = false, 2000);
|
|
this.$nextTick(() => lucide.createIcons());
|
|
});
|
|
}
|
|
}))
|
|
});
|
|
lucide.createIcons();
|
|
</script>
|
|
</body>
|
|
</html>
|