ainz commited on
Commit
b816a4f
·
verified ·
1 Parent(s): 337bc79

Redesign my website

Browse files
Files changed (3) hide show
  1. README.md +8 -5
  2. blog.html +64 -0
  3. index.html +255 -18
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Digitalcraftfolio Pro
3
- emoji:
4
- colorFrom: green
5
- colorTo: yellow
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: DigitalCraftfolio Pro
3
+ colorFrom: yellow
4
+ colorTo: gray
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).
blog.html ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Blog - Jamie's Digital Insights</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
+ <link rel="preconnect" href="https://fonts.googleapis.com">
11
+ <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
12
+ <style>
13
+ .blog-card {
14
+ transition: all 0.3s ease;
15
+ }
16
+ .blog-card:hover {
17
+ transform: translateY(-5px);
18
+ box-shadow: 0 10px 25px rgba(0,0,0,0.1);
19
+ }
20
+ </style>
21
+ </head>
22
+ <body class="font-sans antialiased bg-white">
23
+ <nav class="fixed top-0 w-full z-50 bg-white/80 backdrop-blur-sm">
24
+ <div class="container mx-auto px-4 py-4">
25
+ <div class="flex items-center justify-between">
26
+ <a href="index.html" class="text-2xl font-bold text-gray-900">Jamie</a>
27
+ <div class="hidden md:flex items-center space-x-8">
28
+ <a href="index.html#about" class="text-gray-600 hover:text-gray-900 font-medium">About</a>
29
+ <a href="index.html#expertise" class="text-gray-600 hover:text-gray-900 font-medium">Expertise</a>
30
+ <a href="index.html#projects" class="text-gray-600 hover:text-gray-900 font-medium">Projects</a>
31
+ <a href="blog.html" class="text-gray-900 font-medium">Blog</a>
32
+ <a href="index.html#contact" class="text-gray-600 hover:text-gray-900 font-medium">Contact</a>
33
+ </div>
34
+ <div class="hidden md:flex items-center space-x-4">
35
+ <a href="index.html#contact" class="px-4 py-2 bg-gray-900 text-white rounded-full hover:bg-gray-800 smooth-transition">Get in touch</a>
36
+ </div>
37
+ </div>
38
+ </nav>
39
+
40
+ <section class="pt-32 pb-20">
41
+ <div class="container mx-auto px-4">
42
+ <h1 class="text-4xl md:text-6xl font-bold text-gray-900 mb-12">Digital Craftsmanship Insights</h1>
43
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-8">
44
+ <div class="blog-card p-6 bg-white rounded-2xl shadow-sm">
45
+ <img src="http://static.photos/technology/1024x576/5" alt="Blog Featured" class="w-full h-64 object-cover rounded-xl">
46
+ <h2 class="text-3xl font-bold text-gray-900 mb-4">Featured Post</h2>
47
+ <h3 class="text-2xl font-semibold text-gray-900 mb-4">The Art of Clean Code</h3>
48
+ <p class="text-gray-600 mb-4">
49
+ Exploring the principles and practices that lead to maintainable, scalable codebases.
50
+ </p>
51
+ <div class="flex items-center justify-between">
52
+ <span class="text-sm text-gray-500">March 15, 2024</span>
53
+ <p class="text-gray-600">
54
+ In the world of digital craftsmanship, clean code isn't just about aesthetics—it's about creating systems that are resilient, adaptable, and built to last.
55
+ </p>
56
+ </div>
57
+ </div>
58
+ </section>
59
+
60
+ <section class="py-20 bg-gray-50">
61
+ <div class="container mx-auto px-4">
62
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
63
+ </body>
64
+ </html>
index.html CHANGED
@@ -1,19 +1,256 @@
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>Jamie - Digital Craftsman</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
+ <link rel="preconnect" href="https://fonts.googleapis.com">
11
+ <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
12
+ <style>
13
+ .gradient-bg {
14
+ background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
15
+ }
16
+ .text-shadow {
17
+ text-shadow: 0 2px 4px rgba(0,0,0,0.1);
18
+ }
19
+ .smooth-transition {
20
+ transition: all 0.3s ease;
21
+ }
22
+ .reveal {
23
+ opacity: 0;
24
+ transform: translateY(30px);
25
+ transition: all 0.6s ease;
26
+ }
27
+ .reveal.active {
28
+ opacity: 1;
29
+ transform: translateY(0);
30
+ }
31
+ </style>
32
+ </head>
33
+ <body class="font-sans antialiased bg-white">
34
+ <!-- Navigation -->
35
+ <nav class="fixed top-0 w-full z-50 bg-white/80 backdrop-blur-sm">
36
+ <div class="container mx-auto px-4 py-4">
37
+ <div class="flex items-center justify-between">
38
+ <a href="#" class="text-2xl font-bold text-gray-900">Jamie</a>
39
+ <div class="hidden md:flex items-center space-x-8">
40
+ <a href="#about" class="text-gray-600 hover:text-gray-900 font-medium">About</a>
41
+ <a href="#expertise" class="text-gray-600 hover:text-gray-900 font-medium">Expertise</a>
42
+ <a href="#projects" class="text-gray-600 hover:text-gray-900 font-medium">Projects</a>
43
+ <a href="#blog" class="text-gray-600 hover:text-gray-900 font-medium">Blog</a>
44
+ <a href="#contact" class="text-gray-600 hover:text-gray-900 font-medium">Contact</a>
45
+ </div>
46
+ <div class="hidden md:flex items-center space-x-4">
47
+ <a href="#" class="px-4 py-2 text-gray-600 hover:text-gray-900 font-medium">Get in touch</a>
48
+ <button class="md:hidden text-gray-600">
49
+ <i data-feather="menu"></i>
50
+ </button>
51
+ </div>
52
+ </div>
53
+ </nav>
54
+
55
+ <!-- Hero Section -->
56
+ <section class="min-h-screen flex items-center justify-center gradient-bg pt-16">
57
+ <div class="container mx-auto px-4">
58
+ <div class="max-w-4xl mx-auto text-center">
59
+ <h1 class="text-5xl md:text-7xl lg:text-8xl font-bold text-gray-900 mb-6">Digital Craftsmanship<br>Reimagined</h1>
60
+ <p class="text-xl text-gray-600 mb-8 max-w-2xl mx-auto">
61
+ Creating elegant solutions through code, design, and innovation.
62
+ </p>
63
+ <div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4">
64
+ <a href="#projects" class="px-8 py-4 bg-gray-900 text-white rounded-full hover:bg-gray-800 smooth-transition">
65
+ View My Work
66
+ </a>
67
+ <a href="#contact" class="px-8 py-4 border-2 border-gray-900 text-gray-900 rounded-full hover:bg-gray-900 hover:text-white smooth-transition">
68
+ Get in Touch
69
+ </a>
70
+ </div>
71
+ </div>
72
+ </section>
73
+
74
+ <!-- About Section -->
75
+ <section id="about" class="py-20 bg-white">
76
+ <div class="container mx-auto px-4">
77
+ <div class="flex flex-wrap items-center -mx-4">
78
+ <div class="w-full md:w-1/2 px-4 mb-8 md:mb-0">
79
+ <h2 class="text-4xl md:text-5xl font-bold text-gray-900 mb-12">My Passion for Digital Creation</h2>
80
+ <p class="text-lg text-gray-600 mb-8">
81
+ I believe in the power of clean code and thoughtful design to create digital experiences that matter. With a focus on modern web technologies and user-centric approaches, I craft solutions that are both beautiful and functional.
82
+ </p>
83
+ <div class="flex space-x-4">
84
+ <div class="p-6 border-2 border-gray-100 rounded-2xl">
85
+ <h3 class="text-2xl font-semibold text-gray-900 mb-4">Why I Create</h3>
86
+ <p class="text-gray-600">
87
+ Every project is an opportunity to solve problems, push boundaries, and create something meaningful.
88
+ </p>
89
+ </div>
90
+ </div>
91
+ <div class="w-full md:w-1/2 px-4">
92
+ <div class="relative">
93
+ <img src="http://static.photos/technology/640x360/1" alt="Digital Workspace" class="w-full h-64 object-cover rounded-xl">
94
+ </div>
95
+ </section>
96
+
97
+ <!-- Expertise Section -->
98
+ <section id="expertise" class="py-20 bg-gray-50">
99
+ <div class="container mx-auto px-4">
100
+ <h2 class="text-4xl md:text-5xl font-bold text-gray-900 mb-12">Technical Expertise</h2>
101
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
102
+ <div class="p-6 bg-white rounded-2xl shadow-sm">
103
+ <div class="w-12 h-12 mx-auto mb-4 bg-gray-100 rounded-xl flex items-center justify-center">
104
+ <i data-feather="code"></i>
105
+ </div>
106
+ <h3 class="text-xl font-semibold text-gray-900 mb-2">Frontend Development</h3>
107
+ <p class="text-gray-600">
108
+ React, Vue.js, Tailwind CSS, and modern JavaScript frameworks.
109
+ </p>
110
+ </div>
111
+ <div class="p-6 bg-white rounded-2xl shadow-sm">
112
+ <div class="w-12 h-12 mx-auto mb-4 bg-gray-100 rounded-xl flex items-center justify-center">
113
+ <i data-feather="cpu"></i>
114
+ </div>
115
+ <h3 class="text-xl font-semibold text-gray-900 mb-2">Backend Systems</h3>
116
+ <p class="text-gray-600">
117
+ Node.js, Python, database design, and API development.
118
+ </p>
119
+ </div>
120
+ <div class="p-6 bg-white rounded-2xl shadow-sm">
121
+ <div class="w-12 h-12 mx-auto mb-4 bg-gray-100 rounded-xl flex items-center justify-center">
122
+ <i data-feather="layout"></i>
123
+ </div>
124
+ <h3 class="text-xl font-semibold text-gray-900 mb-2">UI/UX Design</h3>
125
+ <p class="text-gray-600">
126
+ User-centered design principles, prototyping, and creating intuitive interfaces.
127
+ </p>
128
+ </div>
129
+ </div>
130
+ </section>
131
+
132
+ <!-- Projects Section -->
133
+ <section id="projects" class="py-20 bg-white">
134
+ <div class="container mx-auto px-4">
135
+ <h2 class="text-4xl md:text-5xl font-bold text-gray-900 mb-12">Featured Projects</h2>
136
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
137
+ <div class="p-6 bg-white rounded-2xl shadow-sm">
138
+ <img src="http://static.photos/minimal/640x360/2" alt="Project 1" class="w-full h-48 object-cover rounded-xl">
139
+ <h3 class="text-2xl font-semibold text-gray-900 mb-4">E-commerce Platform</h3>
140
+ <p class="text-gray-600 mb-4">
141
+ A full-stack e-commerce solution built with modern technologies.
142
+ </p>
143
+ <a href="#" class="text-gray-900 hover:text-gray-700 font-medium">
144
+ View Details
145
+ </a>
146
+ </div>
147
+ <div class="p-6 bg-white rounded-2xl shadow-sm">
148
+ <img src="http://static.photos/technology/640x360/3" alt="Project 2" class="w-full h-48 object-cover rounded-xl">
149
+ <h3 class="text-2xl font-semibold text-gray-900 mb-4">AI-Powered Dashboard</h3>
150
+ <p class="text-gray-600 mb-4">
151
+ Machine learning integration with real-time analytics and visualization.
152
+ </p>
153
+ <a href="#" class="text-gray-900 hover:text-gray-700 font-medium">
154
+ Explore Project
155
+ </a>
156
+ </div>
157
+ <div class="p-6 bg-white rounded-2xl shadow-sm">
158
+ <img src="http://static.photos/minimal/640x360/4" alt="Project 3" class="w-full h-48 object-cover rounded-xl">
159
+ <h3 class="text-2xl font-semibold text-gray-900 mb-4">Mobile Banking App</h3>
160
+ <p class="text-gray-600 mb-4">
161
+ Secure financial application with biometric authentication and real-time transactions.
162
+ </p>
163
+ <a href="#" class="text-gray-900 hover:text-gray-700 font-medium">
164
+ See Case Study
165
+ </a>
166
+ </div>
167
+ </div>
168
+ </section>
169
+
170
+ <!-- Blog Section -->
171
+ <section id="blog" class="py-20 bg-gray-50">
172
+ <div class="container mx-auto px-4">
173
+ <h2 class="text-4xl md:text-5xl font-bold text-gray-900 mb-12">Latest Insights</h2>
174
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-8">
175
+ <div class="p-6 bg-white rounded-2xl shadow-sm">
176
+ <h3 class="text-2xl font-semibold text-gray-900 mb-4">
177
+ <h3 class="text-xl font-semibold text-gray-900 mb-4">The Future of Web Development</h3>
178
+ <p class="text-gray-600">
179
+ Exploring emerging trends and technologies shaping the future of digital experiences.
180
+ </p>
181
+ <a href="blog.html" class="text-gray-900 hover:text-gray-700 font-medium">
182
+ Read All Posts
183
+ </a>
184
+ </div>
185
+ <div class="p-6 bg-white rounded-2xl shadow-sm">
186
+ <h3 class="text-xl font-semibold text-gray-900 mb-4">Design Systems in 2024</h3>
187
+ <p class="text-gray-600">
188
+ Building scalable design systems for enterprise applications and digital products.
189
+ </p>
190
+ </div>
191
+ </div>
192
+ </section>
193
+
194
+ <!-- Contact Section -->
195
+ <section id="contact" class="py-20 bg-white">
196
+ <div class="container mx-auto px-4">
197
+ <h2 class="text-4xl md:text-5xl font-bold text-gray-900 mb-12">Let's Create Together</h2>
198
+ <div class="max-w-2xl mx-auto">
199
+ <p class="text-lg text-gray-600 mb-8">
200
+ Ready to bring your digital vision to life? Let's discuss how we can work together to create something extraordinary.
201
+ </p>
202
+ <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
203
+ <a href="mailto:hello@jamie.dev" class="px-8 py-4 bg-gray-900 text-white rounded-full hover:bg-gray-800 smooth-transition">
204
+ Start a Conversation
205
+ </a>
206
+ </div>
207
+ </div>
208
+ </section>
209
+
210
+ <!-- Footer -->
211
+ <footer class="py-12 bg-gray-900 text-white">
212
+ <div class="container mx-auto px-4">
213
+ <div class="flex flex-wrap justify-between items-center">
214
+ <div class="w-full md:w-auto">
215
+ <p class="text-sm">© 2024 Jamie. All digital craftsmanship preserved.</p>
216
+ <div class="flex space-x-4">
217
+ <a href="#" class="hover:text-gray-300 smooth-transition">
218
+ <i data-feather="github"></i>
219
+ </a>
220
+ <a href="#" class="hover:text-gray-300 smooth-transition">
221
+ <i data-feather="twitter"></i>
222
+ </a>
223
+ <a href="#" class="hover:text-gray-300 smooth-transition">
224
+ <i data-feather="linkedin"></i>
225
+ </a>
226
+ </div>
227
+ </div>
228
+ </footer>
229
+
230
+ <script>
231
+ feather.replace();
232
+
233
+ // Smooth scrolling for navigation links
234
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
235
+ anchor.addEventListener('click', function (e) {
236
+ e.preventDefault();
237
+ const target = document.querySelector(this.getAttribute('href'));
238
+ window.scrollTo({
239
+ top: target.offsetTop - 80,
240
+ behavior: 'smooth'
241
+ });
242
+ });
243
+
244
+ // Reveal animation on scroll
245
+ const observer = new IntersectionObserver((entries) => {
246
+ entries.forEach(entry => {
247
+ if (entry.isIntersecting) {
248
+ entry.target.classList.add('active');
249
+ }
250
+ });
251
+ }, { threshold: 0.1 });
252
+
253
+ document.querySelectorAll('.reveal').forEach((el) => observer.observe(el));
254
+ </script>
255
+ </body>
256
  </html>