179 lines
11 KiB
HTML
179 lines
11 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="pl">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Wszystkie Prezenty - Gift Planner</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<link rel="stylesheet" href="styles.css">
|
|
<script src="https://unpkg.com/lucide@latest"></script>
|
|
</head>
|
|
<body class="bg-gray-50 min-h-screen">
|
|
|
|
<div class="flex h-screen overflow-hidden">
|
|
<!-- Sidebar -->
|
|
<aside class="w-64 bg-white border-r border-gray-200 hidden lg:flex flex-col">
|
|
<div class="p-6 flex items-center gap-3">
|
|
<div class="w-10 h-10 gradient-bg rounded-xl flex items-center justify-center shadow-lg shadow-indigo-200">
|
|
<i data-lucide="gift" class="text-white w-6 h-6"></i>
|
|
</div>
|
|
<span class="text-xl font-black tracking-tighter">GIFT<span class="text-indigo-600">PLANNER</span></span>
|
|
</div>
|
|
|
|
<nav class="flex-1 px-4 py-4 space-y-1">
|
|
<a href="dashboard.html" class="flex items-center gap-3 px-4 py-3 bg-indigo-50 text-indigo-600 rounded-2xl transition-all font-bold text-sm">
|
|
<i data-lucide="layout-dashboard" class="w-5 h-5"></i> Dashboard
|
|
</a>
|
|
<a href="updates.html" class="flex items-center gap-3 px-4 py-3 text-gray-500 hover:bg-indigo-50 rounded-2xl transition-all font-bold text-sm">
|
|
<i data-lucide="bell" class="w-5 h-5"></i> Powiadomienia
|
|
</a>
|
|
<a href="occasions.html" class="flex items-center gap-3 px-4 py-3 text-gray-500 hover:bg-indigo-50 rounded-2xl transition-all font-bold text-sm">
|
|
<i data-lucide="calendar" class="w-5 h-5"></i> Okazje
|
|
</a>
|
|
<a href="persons.html" class="flex items-center gap-3 px-4 py-3 text-gray-500 hover:bg-indigo-50 rounded-2xl transition-all font-bold text-sm">
|
|
<i data-lucide="users" class="w-5 h-5"></i> Osoby
|
|
</a>
|
|
<a href="notes.html" class="flex items-center gap-3 px-4 py-3 text-gray-500 hover:bg-indigo-50 rounded-2xl transition-all font-bold text-sm">
|
|
<i data-lucide="pen-tool" class="w-5 h-5"></i> Notatki
|
|
</a>
|
|
<div class="pt-4 pb-2 px-4">
|
|
<span class="text-[10px] font-black text-gray-400 uppercase tracking-[0.2em]">AI Assistant</span>
|
|
</div>
|
|
<a href="search.html" class="flex items-center gap-3 px-4 py-3 text-gray-500 hover:bg-indigo-50 rounded-2xl transition-all font-bold text-sm">
|
|
<i data-lucide="sparkles" class="w-5 h-5"></i> Wyszukiwarka
|
|
</a>
|
|
<a href="inspirations.html" class="flex items-center gap-3 px-4 py-3 text-gray-500 hover:bg-indigo-50 rounded-2xl transition-all font-bold text-sm">
|
|
<i data-lucide="image" class="w-5 h-5"></i> Inspiracje
|
|
</a>
|
|
<a href="global-holidays.html" class="flex items-center gap-3 px-4 py-3 text-gray-500 hover:bg-indigo-50 rounded-2xl transition-all font-bold text-sm">
|
|
<i data-lucide="globe" class="w-5 h-5"></i> Święta
|
|
</a>
|
|
<div class="pt-4 pb-2 px-4">
|
|
<span class="text-[10px] font-black text-gray-400 uppercase tracking-[0.2em]">Wiedza & Finanse</span>
|
|
</div>
|
|
<a href="blog.html" class="flex items-center gap-3 px-4 py-3 text-gray-500 hover:bg-indigo-50 rounded-2xl transition-all font-bold text-sm group">
|
|
<i data-lucide="book-open" class="w-5 h-5"></i> Poradniki
|
|
</a>
|
|
<a href="budget.html" class="flex items-center gap-3 px-4 py-3 text-gray-500 hover:bg-indigo-50 rounded-2xl transition-all font-bold text-sm group">
|
|
<i data-lucide="wallet" class="w-5 h-5"></i> Budżet
|
|
</a>
|
|
</nav>
|
|
|
|
<div class="mt-auto p-6">
|
|
<a href="/settings.html">
|
|
<div class="bg-gray-50 rounded-3xl p-4">
|
|
<div class="flex items-center gap-3">
|
|
<div class="w-8 h-8 rounded-full bg-indigo-100 flex items-center justify-center text-indigo-600 font-bold text-xs">A</div>
|
|
<div class="flex flex-col">
|
|
<span class="text-xs font-bold">Adam Kowalski</span>
|
|
<div class="flex items-center gap-1">
|
|
<i data-lucide="zap" class="w-2.5 h-2.5 text-yellow-500 fill-yellow-500"></i>
|
|
<p class="text-[10px] font-bold text-gray-500 uppercase">120 Tokenów</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
</aside>
|
|
|
|
<!-- Main Content -->
|
|
<main class="flex-1 overflow-y-auto bg-gray-50 p-4 lg:p-8">
|
|
<button onclick="window.location.href='occasions.html'" class="flex items-center gap-2 text-gray-500 hover:text-indigo-600 transition-colors mb-6 font-medium">
|
|
<i data-lucide="arrow-left" class="w-4 h-4"></i> Wszystkie okazje
|
|
</button>
|
|
|
|
<!-- Header -->
|
|
<div class="mb-8">
|
|
<h2 class="text-3xl font-black text-gray-900 leading-tight">Boże Narodzenie 2025</h2>
|
|
<div class="flex items-center gap-4 mt-2">
|
|
<span class="bg-indigo-100 text-indigo-700 text-[10px] font-black px-3 py-1 rounded-full uppercase tracking-widest">W planowaniu</span>
|
|
<p class="text-sm text-gray-400 font-bold">28 Zaplanowanych prezentów</p>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Tabs -->
|
|
<div class="flex border-b border-gray-200 mb-8 space-x-8">
|
|
<a href="occasion.html" class="pb-4 text-sm font-bold text-gray-400 hover:text-indigo-600 transition-colors">Lista Osób</a>
|
|
<a href="occasion-gifts.html" class="pb-4 text-sm font-bold border-b-2 border-indigo-600 text-indigo-600">Wszystkie Prezenty</a>
|
|
<a href="occasion-ai.html" class="pb-4 text-sm font-bold text-gray-400 hover:text-gray-600 transition-colors flex items-center gap-2">
|
|
AI <span class="bg-indigo-100 text-indigo-600 text-[10px] px-1.5 py-0.5 rounded uppercase">Beta</span>
|
|
</a>
|
|
</div>
|
|
|
|
<!-- Filters -->
|
|
<div class="flex flex-wrap gap-4 mb-8">
|
|
<button class="bg-indigo-600 text-white px-6 py-2 rounded-xl text-xs font-bold">Wszystkie (28)</button>
|
|
<button class="bg-white border border-gray-100 text-gray-500 px-6 py-2 rounded-xl text-xs font-bold hover:bg-gray-50">Kupione (14)</button>
|
|
<button class="bg-white border border-gray-100 text-gray-500 px-6 py-2 rounded-xl text-xs font-bold hover:bg-gray-50">Zapakowane (10)</button>
|
|
<div class="flex-1"></div>
|
|
<div class="relative">
|
|
<i data-lucide="search" class="w-4 h-4 absolute left-4 top-1/2 -translate-y-1/2 text-gray-400"></i>
|
|
<input type="text" placeholder="Szukaj prezentu..." class="pl-12 pr-6 py-2 bg-white border border-gray-100 rounded-xl text-xs focus:ring-2 focus:ring-indigo-500 outline-none w-64">
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Detailed Gift Grid -->
|
|
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
|
|
<!-- Gift Card 1 -->
|
|
<div class="bg-white rounded-3xl p-5 shadow-sm border border-gray-50 group hover:shadow-xl transition-all">
|
|
<div class="flex items-center gap-4 mb-4">
|
|
<div class="w-16 h-16 bg-gray-50 rounded-2xl overflow-hidden shrink-0">
|
|
<img src="https://images.unsplash.com/photo-1517668808822-9ebb02f2a0e6?auto=format&fit=crop&q=80&w=200" class="w-full h-full object-cover">
|
|
</div>
|
|
<div class="flex-1">
|
|
<h4 class="text-sm font-black text-gray-900 line-clamp-1">Ekspres Sage Barista</h4>
|
|
<p class="text-[10px] font-bold text-indigo-600">Dla: Mama</p>
|
|
</div>
|
|
</div>
|
|
<div class="flex items-center justify-between pt-4 border-t border-gray-50">
|
|
<span class="text-xs font-black text-gray-900">2 499 PLN</span>
|
|
<span class="bg-green-50 text-green-600 text-[10px] font-bold px-2 py-0.5 rounded-full uppercase">Kupiony</span>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Gift Card 2 -->
|
|
<div class="bg-white rounded-3xl p-5 shadow-sm border border-gray-50 group hover:shadow-xl transition-all">
|
|
<div class="flex items-center gap-4 mb-4">
|
|
<div class="w-16 h-16 bg-gray-50 rounded-2xl overflow-hidden shrink-0">
|
|
<img src="https://images.unsplash.com/photo-1544947950-fa07a98d237f?auto=format&fit=crop&q=80&w=200" class="w-full h-full object-cover">
|
|
</div>
|
|
<div class="flex-1">
|
|
<h4 class="text-sm font-black text-gray-900 line-clamp-1">Książka o Jodze</h4>
|
|
<p class="text-[10px] font-bold text-indigo-600">Dla: Mama</p>
|
|
</div>
|
|
</div>
|
|
<div class="flex items-center justify-between pt-4 border-t border-gray-50">
|
|
<span class="text-xs font-black text-gray-900">59 PLN</span>
|
|
<span class="bg-gray-50 text-gray-400 text-[10px] font-bold px-2 py-0.5 rounded-full uppercase">Idea</span>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Gift Card 3 -->
|
|
<div class="bg-white rounded-3xl p-5 shadow-sm border border-gray-50 group hover:shadow-xl transition-all">
|
|
<div class="flex items-center gap-4 mb-4">
|
|
<div class="w-16 h-16 bg-gray-50 rounded-2xl overflow-hidden shrink-0">
|
|
<img src="https://images.unsplash.com/photo-1523275335684-37898b6baf30?auto=format&fit=crop&q=80&w=200" class="w-full h-full object-cover">
|
|
</div>
|
|
<div class="flex-1">
|
|
<h4 class="text-sm font-black text-gray-900 line-clamp-1">Smartwatch Series 9</h4>
|
|
<p class="text-[10px] font-bold text-indigo-600">Dla: Ania</p>
|
|
</div>
|
|
</div>
|
|
<div class="flex items-center justify-between pt-4 border-t border-gray-50">
|
|
<span class="text-xs font-black text-gray-900">1 800 PLN</span>
|
|
<span class="bg-indigo-50 text-indigo-600 text-[10px] font-bold px-2 py-0.5 rounded-full uppercase">Wybrany</span>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- More items... -->
|
|
</div>
|
|
</main>
|
|
</div>
|
|
|
|
<script>
|
|
lucide.createIcons();
|
|
</script>
|
|
</body>
|
|
</html>
|