crtypubg commited on
Commit
8aeb79a
·
verified ·
1 Parent(s): 1e8001b

Redesign my website

Browse files
Files changed (2) hide show
  1. README.md +8 -5
  2. index.html +142 -18
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Web11 React Windows Simulator
3
- emoji: 🏃
4
- colorFrom: blue
5
- colorTo: blue
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: Web11 - React Windows Simulator
3
+ colorFrom: yellow
4
+ colorTo: yellow
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://deepsite.hf.co).
index.html CHANGED
@@ -1,19 +1,143 @@
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>Web11 - Windows 11 Simulator</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <script src="https://unpkg.com/feather-icons"></script>
9
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
10
+ <style>
11
+ .window {
12
+ box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
13
+ border-radius: 8px;
14
+ overflow: hidden;
15
+ transition: all 0.3s ease;
16
+ }
17
+ .window:hover {
18
+ transform: translateY(-2px);
19
+ box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
20
+ }
21
+ .taskbar-icon {
22
+ transition: all 0.2s ease;
23
+ }
24
+ .taskbar-icon:hover {
25
+ transform: scale(1.1);
26
+ filter: brightness(1.2);
27
+ }
28
+ .desktop-icon {
29
+ transition: all 0.2s ease;
30
+ }
31
+ .desktop-icon:hover {
32
+ transform: scale(1.05);
33
+ filter: brightness(1.1);
34
+ }
35
+ .start-menu {
36
+ backdrop-filter: blur(20px);
37
+ background-color: rgba(255, 255, 255, 0.7);
38
+ }
39
+ </style>
40
+ </head>
41
+ <body class="bg-[url('https://win11.blueedge.me/img/wallpaper/default/img0.jpg')] bg-cover bg-center h-screen overflow-hidden font-sans select-none">
42
+ <!-- Desktop Icons -->
43
+ <div class="absolute top-0 left-0 p-4 grid gap-6 grid-cols-1 w-32">
44
+ <div class="desktop-icon flex flex-col items-center text-center text-white text-sm cursor-pointer">
45
+ <img src="https://win11.blueedge.me/img/icon/unescape.png" alt="Unescape" class="w-12 h-12 mb-1">
46
+ <span>Unescape</span>
47
+ </div>
48
+ <div class="desktop-icon flex flex-col items-center text-center text-white text-sm cursor-pointer">
49
+ <img src="https://win11.blueedge.me/img/icon/bin0.png" alt="Recycle Bin" class="w-12 h-12 mb-1">
50
+ <span>Recycle Bin</span>
51
+ </div>
52
+ <div class="desktop-icon flex flex-col items-center text-center text-white text-sm cursor-pointer">
53
+ <img src="https://win11.blueedge.me/img/icon/explorer.png" alt="File Explorer" class="w-12 h-12 mb-1">
54
+ <span>File Explorer</span>
55
+ </div>
56
+ </div>
57
+
58
+ <!-- Windows -->
59
+ <div class="window absolute top-1/4 left-1/4 w-1/2 h-1/2 bg-white flex flex-col">
60
+ <div class="bg-gray-100 px-4 py-2 flex justify-between items-center border-b">
61
+ <div class="flex items-center">
62
+ <img src="https://win11.blueedge.me/img/icon/notepad.png" alt="Notepad" class="w-5 h-5 mr-2">
63
+ <span>Untitled - Notepad</span>
64
+ </div>
65
+ <div class="flex">
66
+ <button class="px-3 py-1 hover:bg-gray-200"><i data-feather="minimize"></i></button>
67
+ <button class="px-3 py-1 hover:bg-gray-200"><i data-feather="maximize"></i></button>
68
+ <button class="px-3 py-1 hover:bg-red-500 hover:text-white"><i data-feather="x"></i></button>
69
+ </div>
70
+ </div>
71
+ <div class="flex-1 p-4 overflow-auto">
72
+ <p>Welcome to Web11 - A Windows 11 simulator built with web technologies!</p>
73
+ </div>
74
+ <div class="bg-gray-100 px-4 py-1 text-xs text-gray-600 border-t">
75
+ 1:31 PM 10/12/25
76
+ </div>
77
+ </div>
78
+
79
+ <!-- Taskbar -->
80
+ <div class="absolute bottom-0 left-0 right-0 bg-gray-900 bg-opacity-90 h-12 flex items-center px-4 justify-between">
81
+ <div class="flex items-center space-x-2">
82
+ <button class="taskbar-icon p-2 rounded-md hover:bg-gray-700">
83
+ <img src="https://win11.blueedge.me/img/icon/home.png" alt="Start" class="w-6 h-6">
84
+ </button>
85
+ <button class="taskbar-icon p-2 rounded-md hover:bg-gray-700">
86
+ <img src="https://win11.blueedge.me/img/icon/widget.png" alt="Widgets" class="w-6 h-6">
87
+ </button>
88
+ <button class="taskbar-icon p-2 rounded-md hover:bg-gray-700">
89
+ <img src="https://win11.blueedge.me/img/icon/explorer.png" alt="Explorer" class="w-6 h-6">
90
+ </button>
91
+ <button class="taskbar-icon p-2 rounded-md hover:bg-gray-700">
92
+ <img src="https://win11.blueedge.me/img/icon/edge.png" alt="Edge" class="w-6 h-6">
93
+ </button>
94
+ <button class="taskbar-icon p-2 rounded-md hover:bg-gray-700">
95
+ <img src="https://win11.blueedge.me/img/icon/store.png" alt="Store" class="w-6 h-6">
96
+ </button>
97
+ </div>
98
+
99
+ <div class="flex items-center space-x-2">
100
+ <button class="taskbar-icon p-1 rounded-md hover:bg-gray-700 flex items-center">
101
+ <i data-feather="wifi" class="w-5 h-5 text-white"></i>
102
+ </button>
103
+ <button class="taskbar-icon p-1 rounded-md hover:bg-gray-700 flex items-center">
104
+ <i data-feather="volume-2" class="w-5 h-5 text-white"></i>
105
+ </button>
106
+ <div class="text-white text-sm">
107
+ 1:31 PM
108
+ </div>
109
+ <div class="w-1 h-5 bg-gray-600 mx-1"></div>
110
+ </div>
111
+ </div>
112
+
113
+ <!-- Start Menu (hidden by default) -->
114
+ <div class="start-menu absolute bottom-16 left-4 w-96 h-2/3 rounded-lg hidden">
115
+ <div class="p-4">
116
+ <input type="text" placeholder="Type here to search" class="w-full p-2 rounded-lg bg-gray-100 mb-4">
117
+ <div class="grid grid-cols-6 gap-4">
118
+ <div class="flex flex-col items-center">
119
+ <img src="https://win11.blueedge.me/img/icon/calculator.png" alt="Calculator" class="w-10 h-10 mb-1">
120
+ <span class="text-xs">Calculator</span>
121
+ </div>
122
+ <div class="flex flex-col items-center">
123
+ <img src="https://win11.blueedge.me/img/icon/spotify.png" alt="Spotify" class="w-10 h-10 mb-1">
124
+ <span class="text-xs">Spotify</span>
125
+ </div>
126
+ <div class="flex flex-col items-center">
127
+ <img src="https://win11.blueedge.me/img/icon/notepad.png" alt="Notepad" class="w-10 h-10 mb-1">
128
+ <span class="text-xs">Notepad</span>
129
+ </div>
130
+ </div>
131
+ </div>
132
+ </div>
133
+
134
+ <script>
135
+ feather.replace();
136
+
137
+ // Toggle start menu
138
+ document.querySelector('[alt="Start"]').addEventListener('click', function() {
139
+ document.querySelector('.start-menu').classList.toggle('hidden');
140
+ });
141
+ </script>
142
+ </body>
143
  </html>