pdf-insight-wizard / index.html
timidis's picture
how can i upload a pdf to want you to create a report from it
29b5343 verified
Raw
History Blame Contribute Delete
4.66 kB
<!DOCTYPE html>
<html lang="en" class="h-full">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pixel Palette Playground</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: {
50: '#f0f9ff',
100: '#e0f2fe',
200: '#bae6fd',
300: '#7dd3fc',
400: '#38bdf8',
500: '#0ea5e9',
600: '#0284c7',
700: '#0369a1',
800: '#075985',
900: '#0c4a6e',
},
secondary: {
50: '#f5f3ff',
100: '#ede9fe',
200: '#ddd6fe',
300: '#c4b5fd',
400: '#a78bfa',
500: '#8b5cf6',
600: '#7c3aed',
700: '#6d28d9',
800: '#5b21b6',
900: '#4c1d95',
}
}
}
}
}
</script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
</head>
<body class="min-h-screen bg-gradient-to-br from-primary-50 to-secondary-50 flex flex-col">
<custom-header></custom-header>
<main class="flex-1 container mx-auto px-4 py-12">
<div class="max-w-4xl mx-auto text-center">
<h1 class="text-5xl font-bold text-primary-800 mb-6">Pixel Palette Playground</h1>
<p class="text-xl text-secondary-700 mb-10">Where colors come to life in undefined ways</p>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div class="bg-white rounded-xl shadow-lg p-8 hover:shadow-xl transition-shadow">
<div class="w-20 h-20 bg-primary-500 rounded-full mx-auto mb-6 flex items-center justify-center">
<i data-feather="droplet" class="text-white w-10 h-10"></i>
</div>
<h3 class="text-2xl font-semibold text-primary-700 mb-3">Primary Colors</h3>
<p class="text-gray-600">Explore our beautiful primary color palette with undefined possibilities.</p>
</div>
<div class="bg-white rounded-xl shadow-lg p-8 hover:shadow-xl transition-shadow">
<div class="w-20 h-20 bg-secondary-500 rounded-full mx-auto mb-6 flex items-center justify-center">
<i data-feather="palette" class="text-white w-10 h-10"></i>
</div>
<h3 class="text-2xl font-semibold text-secondary-700 mb-3">Secondary Colors</h3>
<p class="text-gray-600">Discover complementary secondary colors that make your designs pop.</p>
</div>
</div>
<div class="mt-16 bg-white rounded-xl shadow-lg p-8">
<h2 class="text-3xl font-bold text-gray-800 mb-6">Color Generator</h2>
<div class="grid grid-cols-2 md:grid-cols-5 gap-4 mb-8">
<div class="h-24 rounded-lg bg-primary-50"></div>
<div class="h-24 rounded-lg bg-primary-300"></div>
<div class="h-24 rounded-lg bg-primary-500"></div>
<div class="h-24 rounded-lg bg-primary-700"></div>
<div class="h-24 rounded-lg bg-primary-900"></div>
</div>
<div class="grid grid-cols-2 md:grid-cols-5 gap-4">
<div class="h-24 rounded-lg bg-secondary-50"></div>
<div class="h-24 rounded-lg bg-secondary-300"></div>
<div class="h-24 rounded-lg bg-secondary-500"></div>
<div class="h-24 rounded-lg bg-secondary-700"></div>
<div class="h-24 rounded-lg bg-secondary-900"></div>
</div>
<button class="mt-10 px-6 py-3 bg-primary-600 hover:bg-primary-700 text-white font-medium rounded-lg transition-colors">
Generate New Palette
</button>
</div>
</div>
</main>
<custom-footer></custom-footer>
<script src="components/header.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>feather.replace();</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>