Invader1 commited on
Commit
c269690
·
verified ·
1 Parent(s): 0dc9718

undefined - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +6 -4
  2. index.html +102 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Test
3
- emoji: 🏃
4
- colorFrom: green
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: test
3
+ emoji: 🐳
4
+ colorFrom: purple
5
  colorTo: pink
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,102 @@
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="fr">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>RetroGame Reviews - Nostalgie Gaming</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=Press+Start+2P&family=VT323&display=swap');
11
+
12
+ .pixel-font {
13
+ font-family: 'Press Start 2P', cursive;
14
+ }
15
+
16
+ .retro-font {
17
+ font-family: 'VT323', monospace;
18
+ }
19
+
20
+ .game-card {
21
+ transition: transform 0.3s, box-shadow 0.3s;
22
+ background: linear-gradient(145deg, #1a1a2e, #16213e);
23
+ }
24
+
25
+ .game-card:hover {
26
+ transform: translateY(-5px);
27
+ box-shadow: 0 10px 20px rgba(0, 255, 255, 0.3);
28
+ }
29
+
30
+ .pixel-border {
31
+ border: 4px solid #00ffff;
32
+ box-shadow: 8px 8px 0 rgba(0, 255, 255, 0.2);
33
+ }
34
+
35
+ .scanlines {
36
+ position: relative;
37
+ }
38
+
39
+ .scanlines:after {
40
+ content: "";
41
+ position: absolute;
42
+ top: 0;
43
+ left: 0;
44
+ width: 100%;
45
+ height: 100%;
46
+ background: linear-gradient(
47
+ to bottom,
48
+ rgba(0, 0, 0, 0) 50%,
49
+ rgba(0, 0, 0, 0.2) 51%
50
+ );
51
+ background-size: 100% 4px;
52
+ pointer-events: none;
53
+ }
54
+
55
+ .rating-pixel {
56
+ display: inline-block;
57
+ width: 16px;
58
+ height: 16px;
59
+ margin-right: 2px;
60
+ background-color: #333;
61
+ position: relative;
62
+ }
63
+
64
+ .rating-pixel.filled {
65
+ background-color: #ff0;
66
+ }
67
+
68
+ @keyframes flicker {
69
+ 0% { opacity: 0.8; }
70
+ 50% { opacity: 1; }
71
+ 100% { opacity: 0.8; }
72
+ }
73
+
74
+ .flicker {
75
+ animation: flicker 3s infinite;
76
+ }
77
+ </style>
78
+ </head>
79
+ <body class="bg-gray-900 text-white retro-font">
80
+ <!-- Header -->
81
+ <header class="pixel-border bg-gray-800 mb-8 scanlines">
82
+ <div class="container mx-auto px-4 py-6">
83
+ <div class="flex flex-col md:flex-row justify-between items-center">
84
+ <div class="flex items-center mb-4 md:mb-0">
85
+ <i class="fas fa-gamepad text-4xl text-cyan-400 mr-3"></i>
86
+ <h1 class="pixel-font text-3xl md:text-4xl text-cyan-400 flicker">RetroGame<span class="text-white">Reviews</span></h1>
87
+ </div>
88
+ <nav class="flex space-x-1 md:space-x-4 text-lg">
89
+ <a href="#" class="px-3 py-2 hover:bg-cyan-900 hover:text-cyan-400 rounded transition">Accueil</a>
90
+ <a href="#" class="px-3 py-2 hover:bg-cyan-900 hover:text-cyan-400 rounded transition">Reviews</a>
91
+ <a href="#" class="px-3 py-2 hover:bg-cyan-900 hover:text-cyan-400 rounded transition">Top 10</a>
92
+ <a href="#" class="px-3 py-2 hover:bg-cyan-900 hover:text-cyan-400 rounded transition">À propos</a>
93
+ </nav>
94
+ </div>
95
+ </div>
96
+ </header>
97
+
98
+ <!-- Hero Section -->
99
+ <section class="relative overflow-hidden mb-12 h-96 flex items-center justify-center scanlines">
100
+ <div class="absolute inset-0 bg-gradient-to-r from-cyan-900 to-pur
101
+ <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=Invader1/test" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
102
+ </html>