Wasty5 commited on
Commit
f18c72b
·
verified ·
1 Parent(s): bbeeffd

undefined - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +104 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: The Famous Sports Men
3
- emoji: 🚀
4
- colorFrom: pink
5
- colorTo: pink
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: the-famous-sports-men
3
+ emoji: 🐳
4
+ colorFrom: red
5
+ colorTo: gray
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,104 @@
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>AGYEMANG MATTHEW | Sports Inspiration</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap');
11
+
12
+ body {
13
+ font-family: 'Poppins', sans-serif;
14
+ scroll-behavior: smooth;
15
+ }
16
+
17
+ .hero-gradient {
18
+ background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #1d4ed8 100%);
19
+ }
20
+
21
+ .athlete-card:hover .athlete-overlay {
22
+ opacity: 1;
23
+ transform: translateY(0);
24
+ }
25
+
26
+ .athlete-overlay {
27
+ transition: all 0.4s ease;
28
+ opacity: 0;
29
+ transform: translateY(20px);
30
+ }
31
+
32
+ .parallax {
33
+ background-attachment: fixed;
34
+ background-position: center;
35
+ background-repeat: no-repeat;
36
+ background-size: cover;
37
+ }
38
+
39
+ .floating {
40
+ animation: floating 3s ease-in-out infinite;
41
+ }
42
+
43
+ @keyframes floating {
44
+ 0% { transform: translateY(0px); }
45
+ 50% { transform: translateY(-15px); }
46
+ 100% { transform: translateY(0px); }
47
+ }
48
+ </style>
49
+ </head>
50
+ <body class="bg-gray-50">
51
+ <!-- Navigation -->
52
+ <nav class="fixed w-full bg-white shadow-lg z-50">
53
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
54
+ <div class="flex justify-between h-16">
55
+ <div class="flex items-center">
56
+ <div class="flex-shrink-0 flex items-center">
57
+ <span class="text-blue-800 font-bold text-2xl">AGYEMANG MATTHEW</span>
58
+ </div>
59
+ </div>
60
+ <div class="hidden md:flex items-center space-x-8">
61
+ <a href="#home" class="text-gray-900 hover:text-blue-600 px-3 py-2 font-medium">Home</a>
62
+ <a href="#athletes" class="text-gray-900 hover:text-blue-600 px-3 py-2 font-medium">Athletes</a>
63
+ <a href="#about" class="text-gray-900 hover:text-blue-600 px-3 py-2 font-medium">About</a>
64
+ <a href="#contact" class="text-gray-900 hover:text-blue-600 px-3 py-2 font-medium">Contact</a>
65
+ </div>
66
+ <div class="md:hidden flex items-center">
67
+ <button id="mobile-menu-button" class="text-gray-900 hover:text-blue-600">
68
+ <i class="fas fa-bars text-2xl"></i>
69
+ </button>
70
+ </div>
71
+ </div>
72
+ </div>
73
+
74
+ <!-- Mobile menu -->
75
+ <div id="mobile-menu" class="hidden md:hidden bg-white shadow-lg">
76
+ <div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
77
+ <a href="#home" class="block px-3 py-2 text-gray-900 hover:text-blue-600 font-medium">Home</a>
78
+ <a href="#athletes" class="block px-3 py-2 text-gray-900 hover:text-blue-600 font-medium">Athletes</a>
79
+ <a href="#about" class="block px-3 py-2 text-gray-900 hover:text-blue-600 font-medium">About</a>
80
+ <a href="#contact" class="block px-3 py-2 text-gray-900 hover:text-blue-600 font-medium">Contact</a>
81
+ </div>
82
+ </div>
83
+ </nav>
84
+
85
+ <!-- Hero Section -->
86
+ <section id="home" class="hero-gradient pt-24 pb-32 text-white">
87
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
88
+ <div class="flex flex-col md:flex-row items-center">
89
+ <div class="md:w-1/2 mb-12 md:mb-0">
90
+ <h1 class="text-4xl md:text-6xl font-bold mb-6">AGYEMANG <span class="text-yellow-300">MATTHEW</span></h1>
91
+ <p class="text-xl mb-8">Drawing inspiration from the world's greatest athletes to fuel my journey.</p>
92
+ <div class="flex space-x-4">
93
+ <a href="#athletes" class="bg-yellow-400 hover:bg-yellow-500 text-gray-900 font-bold py-3 px-6 rounded-lg transition duration-300">
94
+ Explore Athletes
95
+ </a>
96
+ <a href="#about" class="border-2 border-white hover:bg-white hover:text-blue-900 font-bold py-3 px-6 rounded-lg transition duration-300">
97
+ My Story
98
+ </a>
99
+ </div>
100
+ </div>
101
+ <div class="md:w-1/2 relative">
102
+ <img src
103
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Wasty5/the-famous-sports-men" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
104
+ </html>