Spaces:
Running
Running
The learn about error coins button should link back to valuablecoinlist.com and there should be another button linking back to richofferrorcoins.com to learn about making money from error coins
Browse files
README.md
CHANGED
|
@@ -1,10 +1,13 @@
|
|
| 1 |
---
|
| 2 |
-
title: Error Coin Explorer
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
-
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
title: Error Coin Explorer 💰
|
| 3 |
+
colorFrom: blue
|
| 4 |
+
colorTo: blue
|
| 5 |
+
emoji: 🐳
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
| 8 |
+
tags:
|
| 9 |
+
- deepsite-v3
|
| 10 |
---
|
| 11 |
|
| 12 |
+
# Welcome to your new DeepSite project!
|
| 13 |
+
This project was created with [DeepSite](https://huggingface.co/deepsite).
|
index.html
CHANGED
|
@@ -1,19 +1,72 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Error Coin Explorer</title>
|
| 7 |
+
<link rel="stylesheet" href="style.css">
|
| 8 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 9 |
+
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
|
| 10 |
+
<script src="https://unpkg.com/feather-icons"></script>
|
| 11 |
+
<script>
|
| 12 |
+
tailwind.config = {
|
| 13 |
+
theme: {
|
| 14 |
+
extend: {
|
| 15 |
+
colors: {
|
| 16 |
+
primary: '#3b82f6',
|
| 17 |
+
secondary: '#10b981'
|
| 18 |
+
}
|
| 19 |
+
}
|
| 20 |
+
}
|
| 21 |
+
}
|
| 22 |
+
</script>
|
| 23 |
+
</head>
|
| 24 |
+
<body class="bg-gray-50 min-h-screen">
|
| 25 |
+
<div class="container mx-auto px-4 py-12">
|
| 26 |
+
<header class="text-center mb-16">
|
| 27 |
+
<h1 class="text-4xl md:text-5xl font-bold text-gray-800 mb-4">
|
| 28 |
+
<i data-feather="dollar-sign" class="inline mr-2"></i>
|
| 29 |
+
Error Coin Explorer
|
| 30 |
+
</h1>
|
| 31 |
+
<p class="text-lg text-gray-600 max-w-2xl mx-auto">
|
| 32 |
+
Discover the fascinating world of error coins and learn how they can be valuable collectibles.
|
| 33 |
+
</p>
|
| 34 |
+
</header>
|
| 35 |
+
|
| 36 |
+
<main class="flex flex-col items-center">
|
| 37 |
+
<div class="bg-white rounded-xl shadow-lg p-8 w-full max-w-md mb-8 text-center">
|
| 38 |
+
<i data-feather="search" class="w-12 h-12 text-primary mx-auto mb-4"></i>
|
| 39 |
+
<h2 class="text-2xl font-semibold text-gray-800 mb-4">Learn About Error Coins</h2>
|
| 40 |
+
<p class="text-gray-600 mb-6">
|
| 41 |
+
Discover the most valuable error coins and what makes them special.
|
| 42 |
+
</p>
|
| 43 |
+
<a href="https://valuablecoinlist.com"
|
| 44 |
+
class="inline-block bg-primary hover:bg-primary-600 text-white font-medium py-3 px-6 rounded-lg transition duration-300">
|
| 45 |
+
Explore Valuable Coins
|
| 46 |
+
</a>
|
| 47 |
+
</div>
|
| 48 |
+
|
| 49 |
+
<div class="bg-white rounded-xl shadow-lg p-8 w-full max-w-md text-center">
|
| 50 |
+
<i data-feather="trending-up" class="w-12 h-12 text-secondary mx-auto mb-4"></i>
|
| 51 |
+
<h2 class="text-2xl font-semibold text-gray-800 mb-4">Profit from Error Coins</h2>
|
| 52 |
+
<p class="text-gray-600 mb-6">
|
| 53 |
+
Learn how to identify and sell error coins for profit.
|
| 54 |
+
</p>
|
| 55 |
+
<a href="https://richofferrorcoins.com"
|
| 56 |
+
class="inline-block bg-secondary hover:bg-secondary-600 text-white font-medium py-3 px-6 rounded-lg transition duration-300">
|
| 57 |
+
Learn to Earn
|
| 58 |
+
</a>
|
| 59 |
+
</div>
|
| 60 |
+
</main>
|
| 61 |
+
|
| 62 |
+
<footer class="mt-20 text-center text-gray-500 text-sm">
|
| 63 |
+
<p>© 2023 Error Coin Explorer. All rights reserved.</p>
|
| 64 |
+
</footer>
|
| 65 |
+
</div>
|
| 66 |
+
|
| 67 |
+
<script>
|
| 68 |
+
feather.replace();
|
| 69 |
+
</script>
|
| 70 |
+
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
|
| 71 |
+
</body>
|
| 72 |
+
</html>
|
script.js
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
// Document ready function
|
| 2 |
+
document.addEventListener('DOMContentLoaded', function() {
|
| 3 |
+
// Add any JavaScript functionality here if needed
|
| 4 |
+
|
| 5 |
+
// Example: Smooth scroll for anchor links
|
| 6 |
+
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
| 7 |
+
anchor.addEventListener('click', function (e) {
|
| 8 |
+
e.preventDefault();
|
| 9 |
+
document.querySelector(this.getAttribute('href')).scrollIntoView({
|
| 10 |
+
behavior: 'smooth'
|
| 11 |
+
});
|
| 12 |
+
});
|
| 13 |
+
});
|
| 14 |
+
});
|
style.css
CHANGED
|
@@ -1,28 +1,23 @@
|
|
|
|
|
| 1 |
body {
|
| 2 |
-
|
| 3 |
-
font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
|
| 4 |
}
|
| 5 |
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
|
|
|
| 9 |
}
|
| 10 |
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
margin-bottom: 10px;
|
| 15 |
-
margin-top: 5px;
|
| 16 |
}
|
| 17 |
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
}
|
| 25 |
-
|
| 26 |
-
.card p:last-child {
|
| 27 |
-
margin-bottom: 0;
|
| 28 |
-
}
|
|
|
|
| 1 |
+
/* Custom styles that can't be achieved with Tailwind */
|
| 2 |
body {
|
| 3 |
+
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
|
|
|
| 4 |
}
|
| 5 |
|
| 6 |
+
/* Animation for buttons */
|
| 7 |
+
a[href^="https://"] {
|
| 8 |
+
transition: all 0.3s ease;
|
| 9 |
+
transform: translateY(0);
|
| 10 |
}
|
| 11 |
|
| 12 |
+
a[href^="https://"]:hover {
|
| 13 |
+
transform: translateY(-2px);
|
| 14 |
+
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
|
|
|
|
|
|
|
| 15 |
}
|
| 16 |
|
| 17 |
+
/* Responsive adjustments */
|
| 18 |
+
@media (max-width: 640px) {
|
| 19 |
+
.container {
|
| 20 |
+
padding-left: 1rem;
|
| 21 |
+
padding-right: 1rem;
|
| 22 |
+
}
|
| 23 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|