129 lines
7.8 KiB
HTML
129 lines
7.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="pl">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Analiza Budżetu (Zablokowana) - Gift Planner</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<link rel="stylesheet" href="styles.css">
|
|
<script src="https://unpkg.com/lucide@latest"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/chart.js"></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="updates.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="bell"></i> Aktualizacje
|
|
</a>
|
|
<a href="global-holidays.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="globe"></i> Święta
|
|
</a>
|
|
<a href="inspirations.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="sparkles"></i> Inspiracje
|
|
</a>
|
|
<a href="blog.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="book-open"></i> Poradniki
|
|
</a>
|
|
<a href="occasions.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="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 bg-indigo-50 text-indigo-700 rounded-xl font-medium">
|
|
<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 pb-24 md:pb-8">
|
|
<header class="mb-10">
|
|
<h2 class="text-3xl font-black text-gray-900 leading-tight">Analiza Wydatków</h2>
|
|
<div class="flex items-center gap-2">
|
|
<p class="text-gray-500 font-medium">Sprawdź ile wydajesz na prezenty.</p>
|
|
<span class="bg-gray-200 text-gray-600 text-[10px] font-black px-2 py-0.5 rounded uppercase">Wersja Podstawowa</span>
|
|
</div>
|
|
</header>
|
|
|
|
<!-- Top Stats (Simplified) -->
|
|
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-10">
|
|
<div class="bg-white p-6 rounded-[2rem] border border-gray-50 shadow-sm">
|
|
<p class="text-[10px] font-black text-gray-400 uppercase tracking-widest mb-1">Całkowity Budżet 2025</p>
|
|
<h3 class="text-2xl font-black text-gray-900 leading-none">12 400 PLN</h3>
|
|
</div>
|
|
<div class="bg-indigo-600 p-6 rounded-[2rem] text-white shadow-xl shadow-indigo-100">
|
|
<p class="text-[10px] font-black text-indigo-200 uppercase tracking-widest mb-1">Wykorzystano do dziś</p>
|
|
<h3 class="text-2xl font-black leading-none">8 250 PLN</h3>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Gated Analytics Section -->
|
|
<section class="bg-white rounded-[3rem] p-8 lg:p-12 mb-10 border border-gray-100 shadow-sm relative overflow-hidden">
|
|
<div class="flex flex-col items-center text-center max-w-2xl mx-auto py-12">
|
|
<div class="w-20 h-20 bg-indigo-50 rounded-[2rem] flex items-center justify-center text-indigo-600 mb-8 shadow-inner">
|
|
<i data-lucide="lock" class="w-10 h-10"></i>
|
|
</div>
|
|
<h3 class="text-4xl font-black text-gray-900 mb-4 tracking-tight">Odblokuj pełną kontrolę nad budżetem</h3>
|
|
<p class="text-gray-500 text-lg mb-10 font-medium leading-relaxed">
|
|
Twoja darmowa analiza obejmuje tylko podstawowe statystyki. Wykup pakiet <strong>"Kontrola budżetu"</strong>, aby odblokować wykresy miesięczne, podział na okazje oraz inteligentne prognozy AI.
|
|
</p>
|
|
|
|
<div class="grid grid-cols-1 md:grid-cols-3 gap-6 w-full mb-12">
|
|
<div class="p-6 bg-gray-50 rounded-3xl border border-gray-100">
|
|
<i data-lucide="bar-chart-3" class="w-6 h-6 text-indigo-400 mb-3 mx-auto"></i>
|
|
<p class="text-xs font-black text-gray-900 uppercase">Wykresy Roczne</p>
|
|
</div>
|
|
<div class="p-6 bg-gray-50 rounded-3xl border border-gray-100">
|
|
<i data-lucide="pie-chart" class="w-6 h-6 text-indigo-400 mb-3 mx-auto"></i>
|
|
<p class="text-xs font-black text-gray-900 uppercase">Podział Wydatków</p>
|
|
</div>
|
|
<div class="p-6 bg-gray-50 rounded-3xl border border-gray-100">
|
|
<i data-lucide="brain-circuit" class="w-6 h-6 text-indigo-400 mb-3 mx-auto"></i>
|
|
<p class="text-xs font-black text-gray-900 uppercase">Prognozy AI</p>
|
|
</div>
|
|
</div>
|
|
|
|
<button onclick="window.location.href='settings.html'" class="gradient-bg text-white px-10 py-5 rounded-[2rem] font-black text-lg shadow-2xl shadow-indigo-200 hover:scale-105 transition-all flex items-center gap-3">
|
|
SUBSKRYBUJ ZA 6.99 PLN / MSC
|
|
</button>
|
|
<p class="text-[10px] text-gray-400 font-bold uppercase tracking-widest mt-6">Anuluj w dowolnym momencie</p>
|
|
</div>
|
|
|
|
<!-- Background Blurry Elements -->
|
|
<div class="absolute -right-20 top-20 w-64 h-64 bg-indigo-100 rounded-full blur-3xl opacity-30"></div>
|
|
<div class="absolute -left-20 bottom-20 w-64 h-64 bg-purple-100 rounded-full blur-3xl opacity-30"></div>
|
|
</section>
|
|
|
|
<!-- History (Simplified for Free) -->
|
|
<div class="bg-white rounded-[2.5rem] p-8 border border-gray-50 shadow-sm opacity-50 grayscale pointer-events-none">
|
|
<div class="flex items-center justify-between mb-8">
|
|
<h4 class="text-xl font-black text-gray-900">Historia Ostatnich Zakupów</h4>
|
|
</div>
|
|
<div class="space-y-4">
|
|
<div class="h-12 bg-gray-100 rounded-2xl w-full"></div>
|
|
<div class="h-12 bg-gray-100 rounded-2xl w-full"></div>
|
|
<div class="h-12 bg-gray-100 rounded-2xl w-full"></div>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
</div>
|
|
|
|
<script>
|
|
lucide.createIcons();
|
|
</script>
|
|
</body>
|
|
</html>
|