ghosthcp516 commited on
Commit
d819f2e
·
verified ·
1 Parent(s): d87e4eb

Add 2 files

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +90 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Ai Genereated Page
3
- emoji: 📉
4
- colorFrom: gray
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: ai-genereated-page
3
+ emoji: 🐳
4
+ colorFrom: blue
5
+ colorTo: blue
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,90 @@
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>Dark Data Concept Banner</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.4/gsap.min.js"></script>
9
+ <style>
10
+ /* Custom styles */
11
+ .banner-container {
12
+ background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
13
+ position: relative;
14
+ height: 50vh;
15
+ overflow: hidden;
16
+ }
17
+
18
+ .grid-overlay {
19
+ position: absolute;
20
+ top: 0;
21
+ left: 0;
22
+ width: 100%;
23
+ height: 100%;
24
+ background-image:
25
+ linear-gradient(rgba(100, 116, 139, 0.1) 1px, transparent 1px),
26
+ linear-gradient(90deg, rgba(100, 116, 139, 0.1) 1px, transparent 1px);
27
+ background-size: 60px 60px;
28
+ pointer-events: none;
29
+ }
30
+
31
+ .particle {
32
+ position: absolute;
33
+ background: linear-gradient(145deg, #3b82f6, #8b5cf6);
34
+ border-radius: 50%;
35
+ pointer-events: none;
36
+ filter: blur(1px);
37
+ }
38
+
39
+ .data-node {
40
+ position: absolute;
41
+ width: 8px;
42
+ height: 8px;
43
+ background: linear-gradient(45deg, #3b82f6, #8b5cf6);
44
+ border-radius: 50%;
45
+ box-shadow: 0 0 10px 2px rgba(59, 130, 246, 0.7);
46
+ z-index: 10;
47
+ }
48
+
49
+ .data-connection {
50
+ position: absolute;
51
+ height: 1px;
52
+ background: linear-gradient(90deg, transparent, #64748b, transparent);
53
+ }
54
+
55
+ .polygon {
56
+ position: absolute;
57
+ background: rgba(59, 130, 246, 0.1);
58
+ backdrop-filter: blur(2px);
59
+ clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
60
+ border: 1px solid rgba(59, 130, 246, 0.3);
61
+ }
62
+
63
+ .ring {
64
+ position: absolute;
65
+ border-radius: 50%;
66
+ border: 1px solid rgba(59, 130, 246, 0.3);
67
+ }
68
+
69
+ .data-wave {
70
+ position: absolute;
71
+ width: 200%;
72
+ height: 100px;
73
+ background: linear-gradient(90deg,
74
+ transparent,
75
+ rgba(59, 130, 246, 0.7),
76
+ rgba(139, 92, 246, 0.7),
77
+ transparent);
78
+ opacity: 0.1;
79
+ transform-origin: center;
80
+ animation: waveMove 20s linear infinite;
81
+ filter: blur(5px);
82
+ }
83
+
84
+ @keyframes waveMove {
85
+ 0% { transform: translateX(-50%) rotate(0deg); }
86
+ 100% { transform: translateX(0%) rotate(0deg); }
87
+ }
88
+
89
+ .
90
+ </html>