jcisecki911 commited on
Commit
d8a684b
·
verified ·
1 Parent(s): 6f16c66

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +108 -19
  3. prompts.txt +0 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: D4w Ca
3
- emoji: 📈
4
- colorFrom: gray
5
- colorTo: purple
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: d4w-ca
3
+ emoji: 🐳
4
+ colorFrom: yellow
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,108 @@
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
+ <title>I'm ready to work - Ask me anything</title>
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <meta charset="utf-8">
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=Inter:wght@300;500;700&display=swap');
11
+
12
+ :root {
13
+ --primary: #6366f1;
14
+ --primary-light: #818cf8;
15
+ --secondary: #10b981;
16
+ --dark: #1e293b;
17
+ --light: #f8fafc;
18
+ }
19
+
20
+ body {
21
+ font-family: 'Inter', sans-serif;
22
+ background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
23
+ display: flex;
24
+ justify-content: center;
25
+ align-items: center;
26
+ min-height: 100dvh;
27
+ text-align: center;
28
+ overflow: hidden;
29
+ position: relative;
30
+ }
31
+
32
+ .glass-card {
33
+ background: rgba(255, 255, 255, 0.8);
34
+ backdrop-filter: blur(10px);
35
+ -webkit-backdrop-filter: blur(10px);
36
+ border-radius: 1rem;
37
+ border: 1px solid rgba(255, 255, 255, 0.2);
38
+ box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
39
+ }
40
+
41
+ .arrow {
42
+ position: absolute;
43
+ bottom: 2rem;
44
+ left: 50%;
45
+ transform: translateX(-50%) rotate(30deg);
46
+ width: 100px;
47
+ opacity: 0.7;
48
+ animation: float 3s ease-in-out infinite;
49
+ }
50
+
51
+ @keyframes float {
52
+ 0% { transform: translateX(-50%) rotate(30deg) translateY(0px); }
53
+ 50% { transform: translateX(-50%) rotate(30deg) translateY(-10px); }
54
+ 100% { transform: translateX(-50%) rotate(30deg) translateY(0px); }
55
+ }
56
+
57
+ .pulse {
58
+ animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
59
+ }
60
+
61
+ @keyframes pulse {
62
+ 0%, 100% { opacity: 1; }
63
+ 50% { opacity: 0.5; }
64
+ }
65
+ </style>
66
+ </head>
67
+ <body class="p-4">
68
+ <div class="glass-card p-8 max-w-2xl mx-auto w-full">
69
+ <h1 class="text-4xl md:text-5xl font-bold text-gray-800 mb-2">
70
+ <span class="text-gray-500 text-2xl md:text-3xl block">I'm ready to work,</span>
71
+ Ask me anything.
72
+ </h1>
73
+ <p class="text-lg text-gray-600 mt-6 mb-8">
74
+ I'm here to assist you with web development, design, and coding questions.
75
+ </p>
76
+ <div class="flex justify-center gap-4">
77
+ <button class="px-6 py-3 bg-indigo-600 hover:bg-indigo-700 text-white rounded-lg shadow-md transition-all">
78
+ <i class="fas fa-paper-plane mr-2"></i> Start Chat
79
+ </button>
80
+ <button class="px-6 py-3 bg-white hover:bg-gray-100 text-gray-800 border border-gray-200 rounded-lg shadow-sm transition-all">
81
+ <i class="fas fa-book mr-2"></i> Learn More
82
+ </button>
83
+ </div>
84
+ </div>
85
+
86
+ <img src="https://enzostvs-deepsite.hf.space/arrow.svg" class="arrow" alt="Down arrow indicator"/>
87
+
88
+ <div class="absolute bottom-4 left-0 right-0 text-center text-gray-400 text-sm">
89
+ <span class="pulse"><i class="fas fa-circle"></i></span>
90
+ <span class="ml-2">Connected and ready</span>
91
+ </div>
92
+
93
+ <script>
94
+ // Simple hover effect for buttons
95
+ document.querySelectorAll('button').forEach(btn => {
96
+ btn.addEventListener('mouseenter', () => {
97
+ btn.classList.add('scale-105');
98
+ btn.classList.remove('scale-100');
99
+ });
100
+
101
+ btn.addEventListener('mouseleave', () => {
102
+ btn.classList.remove('scale-105');
103
+ btn.classList.add('scale-100');
104
+ });
105
+ });
106
+ </script>
107
+ <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=jcisecki911/d4w-ca" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
108
+ </html>
prompts.txt ADDED
File without changes