dbeck22 commited on
Commit
c95fe7b
·
verified ·
1 Parent(s): cdce87d

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
Files changed (4) hide show
  1. README.md +8 -5
  2. index.html +72 -19
  3. script.js +14 -0
  4. style.css +16 -21
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Error Coin Explorer
3
- emoji: 🏢
4
- colorFrom: yellow
5
- colorTo: gray
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
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
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
- padding: 2rem;
3
- font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
4
  }
5
 
6
- h1 {
7
- font-size: 16px;
8
- margin-top: 0;
 
9
  }
10
 
11
- p {
12
- color: rgb(107, 114, 128);
13
- font-size: 15px;
14
- margin-bottom: 10px;
15
- margin-top: 5px;
16
  }
17
 
18
- .card {
19
- max-width: 620px;
20
- margin: 0 auto;
21
- padding: 16px;
22
- border: 1px solid lightgray;
23
- border-radius: 16px;
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
+ }