add first mockup
This commit is contained in:
136
occasion-gifts.html
Normal file
136
occasion-gifts.html
Normal file
@@ -0,0 +1,136 @@
|
||||
<!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 text-white">
|
||||
<i data-lucide="gift"></i>
|
||||
</div>
|
||||
<h1 class="text-xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-indigo-600 to-purple-600">Gift Planner</h1>
|
||||
</div>
|
||||
<nav class="flex-1 px-4 py-4 space-y-2">
|
||||
<a href="dashboard.html" class="flex items-center gap-3 px-4 py-3 text-gray-600 hover:bg-gray-50 rounded-xl transition-colors">
|
||||
<i data-lucide="layout-dashboard"></i> Dashboard
|
||||
</a>
|
||||
<a href="occasions.html" class="flex items-center gap-3 px-4 py-3 bg-indigo-50 text-indigo-700 rounded-xl font-medium">
|
||||
<i data-lucide="calendar"></i> Okazje
|
||||
</a>
|
||||
<a href="persons.html" class="flex items-center gap-3 px-4 py-3 text-gray-600 hover:bg-gray-50 rounded-xl transition-colors">
|
||||
<i data-lucide="users"></i> Osoby
|
||||
</a>
|
||||
<a href="budget.html" class="flex items-center gap-3 px-4 py-3 text-gray-600 hover:bg-gray-50 rounded-xl transition-colors">
|
||||
<i data-lucide="wallet"></i> Budżet
|
||||
</a>
|
||||
</nav>
|
||||
</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">
|
||||
Analiza 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>
|
||||
Reference in New Issue
Block a user