Kskip commited on
Commit
ae02ed6
·
verified ·
1 Parent(s): 98dc4c7

Create a single-page website with a centered layout. The background should be a subtle, dark gradient. In the center, there should be a large, glowing text that says 'Luminous: Online.' Below that, add a small, elegant status message that says 'All systems operational. The journey continues.' At the bottom of the page, add a footer with a link to our GitHub repository with the text 'Source Code'. - Initial Deployment

Browse files
Files changed (3) hide show
  1. README.md +6 -4
  2. index.html +58 -18
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Luminous
3
- emoji: 🐨
4
  colorFrom: gray
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: luminous
3
+ emoji: 🐳
4
  colorFrom: gray
5
+ colorTo: yellow
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,59 @@
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>Luminous: Online</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
+ body {
12
+ background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
13
+ min-height: 100vh;
14
+ }
15
+ .glow-text {
16
+ text-shadow: 0 0 10px rgba(100, 149, 237, 0.8),
17
+ 0 0 20px rgba(100, 149, 237, 0.6),
18
+ 0 0 30px rgba(100, 149, 237, 0.4);
19
+ animation: pulse 2s infinite alternate;
20
+ }
21
+ @keyframes pulse {
22
+ from {
23
+ text-shadow: 0 0 10px rgba(100, 149, 237, 0.8),
24
+ 0 0 20px rgba(100, 149, 237, 0.6),
25
+ 0 0 30px rgba(100, 149, 237, 0.4);
26
+ }
27
+ to {
28
+ text-shadow: 0 0 15px rgba(100, 149, 237, 1),
29
+ 0 0 25px rgba(100, 149, 237, 0.8),
30
+ 0 0 35px rgba(100, 149, 237, 0.6);
31
+ }
32
+ }
33
+ </style>
34
+ </head>
35
+ <body class="flex flex-col items-center justify-center text-center text-white font-sans">
36
+ <main class="flex flex-col items-center justify-center flex-grow px-4">
37
+ <h1 class="glow-text text-6xl md:text-8xl font-bold mb-6">Luminous: Online</h1>
38
+ <p class="text-xl md:text-2xl text-gray-300 mb-2 flex items-center">
39
+ <span class="w-3 h-3 bg-green-500 rounded-full mr-2 animate-pulse"></span>
40
+ All systems operational.
41
+ </p>
42
+ <p class="text-lg md:text-xl text-gray-400 italic">The journey continues.</p>
43
+ </main>
44
+
45
+ <footer class="w-full py-6 text-center text-gray-500">
46
+ <a href="https://github.com"
47
+ target="_blank"
48
+ rel="noopener noreferrer"
49
+ class="inline-flex items-center hover:text-gray-300 transition-colors">
50
+ <i data-feather="github" class="mr-2"></i>
51
+ Source Code
52
+ </a>
53
+ </footer>
54
+
55
+ <script>
56
+ feather.replace();
57
+ </script>
58
+ </body>
59
  </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ Create a single-page website with a centered layout. The background should be a subtle, dark gradient. In the center, there should be a large, glowing text that says 'Luminous: Online.' Below that, add a small, elegant status message that says 'All systems operational. The journey continues.' At the bottom of the page, add a footer with a link to our GitHub repository with the text 'Source Code'.