Add 2 files
Browse files- README.md +7 -5
- index.html +320 -19
README.md
CHANGED
@@ -1,10 +1,12 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
-
emoji:
|
4 |
-
colorFrom:
|
5 |
-
colorTo:
|
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: my-jc-landing-page-demo
|
3 |
+
emoji: 🐳
|
4 |
+
colorFrom: pink
|
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,320 @@
|
|
1 |
-
<!
|
2 |
-
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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>Jeremy Caplan | Educator, Writer, Media Innovator</title>
|
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;400;500;600;700&display=swap');
|
11 |
+
|
12 |
+
body {
|
13 |
+
font-family: 'Inter', sans-serif;
|
14 |
+
background-color: #f9fafb;
|
15 |
+
}
|
16 |
+
|
17 |
+
.gradient-text {
|
18 |
+
background-clip: text;
|
19 |
+
-webkit-background-clip: text;
|
20 |
+
color: transparent;
|
21 |
+
background-image: linear-gradient(90deg, #3b82f6, #10b981);
|
22 |
+
}
|
23 |
+
|
24 |
+
.article-card:hover {
|
25 |
+
transform: translateY(-5px);
|
26 |
+
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
27 |
+
}
|
28 |
+
|
29 |
+
.social-icon:hover {
|
30 |
+
transform: scale(1.1);
|
31 |
+
}
|
32 |
+
</style>
|
33 |
+
</head>
|
34 |
+
<body class="min-h-screen">
|
35 |
+
<!-- Hero Section -->
|
36 |
+
<section class="relative py-20 px-4 sm:px-6 lg:px-8 bg-gradient-to-br from-blue-50 to-green-50">
|
37 |
+
<div class="max-w-7xl mx-auto">
|
38 |
+
<div class="text-center">
|
39 |
+
<h1 class="text-4xl md:text-6xl font-bold text-gray-900 mb-4">
|
40 |
+
Jeremy Caplan
|
41 |
+
</h1>
|
42 |
+
<p class="text-xl md:text-2xl text-gray-600 max-w-3xl mx-auto">
|
43 |
+
Educator, writer and media innovator helping people work smarter and learn better.
|
44 |
+
</p>
|
45 |
+
<div class="mt-10">
|
46 |
+
<a href="#work" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md shadow-sm text-white bg-blue-600 hover:bg-blue-700 transition duration-150 ease-in-out">
|
47 |
+
Explore My Work
|
48 |
+
<svg class="ml-3 -mr-1 h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
49 |
+
<path fill-rule="evenodd" d="M10.293 5.293a1 1 0 011.414 0l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414-1.414L12.586 11H5a1 1 0 110-2h7.586l-2.293-2.293a1 1 0 010-1.414z" clip-rule="evenodd" />
|
50 |
+
</svg>
|
51 |
+
</a>
|
52 |
+
</div>
|
53 |
+
</div>
|
54 |
+
</div>
|
55 |
+
<div class="absolute bottom-0 left-0 right-0 overflow-hidden">
|
56 |
+
<svg class="w-full h-16" viewBox="0 0 1440 120" fill="none" xmlns="http://www.w3.org/2000/svg">
|
57 |
+
<path d="M0 0H1440V120C1195 120 955 120 720 120C485 120 245 120 0 120V0Z" fill="#f9fafb"/>
|
58 |
+
</svg>
|
59 |
+
</div>
|
60 |
+
</section>
|
61 |
+
|
62 |
+
<!-- Featured Work Section -->
|
63 |
+
<section id="work" class="py-16 px-4 sm:px-6 lg:px-8 bg-white">
|
64 |
+
<div class="max-w-7xl mx-auto">
|
65 |
+
<div class="text-center mb-16">
|
66 |
+
<h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">
|
67 |
+
<span class="gradient-text">Featured Articles & Projects</span>
|
68 |
+
</h2>
|
69 |
+
<p class="mt-4 max-w-2xl text-xl text-gray-500 mx-auto">
|
70 |
+
A selection of my recent writing and media projects
|
71 |
+
</p>
|
72 |
+
</div>
|
73 |
+
|
74 |
+
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
|
75 |
+
<!-- Article 1 -->
|
76 |
+
<div class="article-card rounded-lg overflow-hidden shadow-md bg-white transition-all duration-300 ease-in-out">
|
77 |
+
<div class="h-48 bg-gradient-to-r from-blue-400 to-blue-600 flex items-center justify-center">
|
78 |
+
<i class="fas fa-newspaper text-white text-6xl"></i>
|
79 |
+
</div>
|
80 |
+
<div class="p-6">
|
81 |
+
<h3 class="text-xl font-semibold text-gray-900 mb-2">The Future of Learning</h3>
|
82 |
+
<p class="text-gray-600 mb-4">Exploring how technology is transforming education and professional development in the digital age.</p>
|
83 |
+
<a href="#" class="text-blue-600 hover:text-blue-800 font-medium inline-flex items-center">
|
84 |
+
Read Article
|
85 |
+
<svg class="ml-1 w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
86 |
+
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14 5l7 7m0 0l-7 7m7-7H3"></path>
|
87 |
+
</svg>
|
88 |
+
</a>
|
89 |
+
</div>
|
90 |
+
</div>
|
91 |
+
|
92 |
+
<!-- Article 2 -->
|
93 |
+
<div class="article-card rounded-lg overflow-hidden shadow-md bg-white transition-all duration-300 ease-in-out">
|
94 |
+
<div class="h-48 bg-gradient-to-r from-green-400 to-green-600 flex items-center justify-center">
|
95 |
+
<i class="fas fa-tools text-white text-6xl"></i>
|
96 |
+
</div>
|
97 |
+
<div class="p-6">
|
98 |
+
<h3 class="text-xl font-semibold text-gray-900 mb-2">Wonder Tools Newsletter</h3>
|
99 |
+
<p class="text-gray-600 mb-4">My weekly newsletter sharing practical tools and tips for working smarter in the digital era.</p>
|
100 |
+
<a href="https://wondertools.substack.com" target="_blank" class="text-green-600 hover:text-green-800 font-medium inline-flex items-center">
|
101 |
+
Visit Substack
|
102 |
+
<svg class="ml-1 w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
103 |
+
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14 5l7 7m0 0l-7 7m7-7H3"></path>
|
104 |
+
</svg>
|
105 |
+
</a>
|
106 |
+
</div>
|
107 |
+
</div>
|
108 |
+
|
109 |
+
<!-- Article 3 -->
|
110 |
+
<div class="article-card rounded-lg overflow-hidden shadow-md bg-white transition-all duration-300 ease-in-out">
|
111 |
+
<div class="h-48 bg-gradient-to-r from-purple-400 to-purple-600 flex items-center justify-center">
|
112 |
+
<i class="fas fa-video text-white text-6xl"></i>
|
113 |
+
</div>
|
114 |
+
<div class="p-6">
|
115 |
+
<h3 class="text-xl font-semibold text-gray-900 mb-2">YouTube Channel</h3>
|
116 |
+
<p class="text-gray-600 mb-4">Video tutorials and interviews about digital tools, media innovation, and productivity strategies.</p>
|
117 |
+
<a href="https://youtube.com/jeremycaplan" target="_blank" class="text-purple-600 hover:text-purple-800 font-medium inline-flex items-center">
|
118 |
+
Watch Videos
|
119 |
+
<svg class="ml-1 w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
120 |
+
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14 5l7 7m0 0l-7 7m7-7H3"></path>
|
121 |
+
</svg>
|
122 |
+
</a>
|
123 |
+
</div>
|
124 |
+
</div>
|
125 |
+
|
126 |
+
<!-- Article 4 -->
|
127 |
+
<div class="article-card rounded-lg overflow-hidden shadow-md bg-white transition-all duration-300 ease-in-out">
|
128 |
+
<div class="h-48 bg-gradient-to-r from-yellow-400 to-yellow-600 flex items-center justify-center">
|
129 |
+
<i class="fas fa-chalkboard-teacher text-white text-6xl"></i>
|
130 |
+
</div>
|
131 |
+
<div class="p-6">
|
132 |
+
<h3 class="text-xl font-semibold text-gray-900 mb-2">Teaching Resources</h3>
|
133 |
+
<p class="text-gray-600 mb-4">Curated materials and guides for educators looking to integrate digital tools into their classrooms.</p>
|
134 |
+
<a href="#" class="text-yellow-600 hover:text-yellow-800 font-medium inline-flex items-center">
|
135 |
+
Explore Resources
|
136 |
+
<svg class="ml-1 w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
137 |
+
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14 5l7 7m0 0l-7 7m7-7H3"></path>
|
138 |
+
</svg>
|
139 |
+
</a>
|
140 |
+
</div>
|
141 |
+
</div>
|
142 |
+
|
143 |
+
<!-- Article 5 -->
|
144 |
+
<div class="article-card rounded-lg overflow-hidden shadow-md bg-white transition-all duration-300 ease-in-out">
|
145 |
+
<div class="h-48 bg-gradient-to-r from-red-400 to-red-600 flex items-center justify-center">
|
146 |
+
<i class="fas fa-microphone-alt text-white text-6xl"></i>
|
147 |
+
</div>
|
148 |
+
<div class="p-6">
|
149 |
+
<h3 class="text-xl font-semibold text-gray-900 mb-2">Podcast Appearances</h3>
|
150 |
+
<p class="text-gray-600 mb-4">Interviews and guest appearances discussing media, technology, and digital learning strategies.</p>
|
151 |
+
<a href="#" class="text-red-600 hover:text-red-800 font-medium inline-flex items-center">
|
152 |
+
Listen Now
|
153 |
+
<svg class="ml-1 w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
154 |
+
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14 5l7 7m0 0l-7 7m7-7H3"></path>
|
155 |
+
</svg>
|
156 |
+
</a>
|
157 |
+
</div>
|
158 |
+
</div>
|
159 |
+
|
160 |
+
<!-- Article 6 (CTA) -->
|
161 |
+
<div class="rounded-lg overflow-hidden shadow-md bg-gradient-to-br from-blue-500 to-blue-700 transition-all duration-300 ease-in-out flex flex-col justify-center p-8">
|
162 |
+
<div class="text-center">
|
163 |
+
<h3 class="text-xl font-semibold text-white mb-2">Want to see more?</h3>
|
164 |
+
<p class="text-blue-100 mb-6">Explore my complete portfolio of writing, teaching materials, and media projects.</p>
|
165 |
+
<a href="https://jeremycaplan.com" target="_blank" class="inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md text-blue-700 bg-white hover:bg-blue-50 transition duration-150 ease-in-out">
|
166 |
+
Visit JeremyCaplan.com
|
167 |
+
</a>
|
168 |
+
</div>
|
169 |
+
</div>
|
170 |
+
</div>
|
171 |
+
</div>
|
172 |
+
</section>
|
173 |
+
|
174 |
+
<!-- Contact Section -->
|
175 |
+
<section class="py-16 px-4 sm:px-6 lg:px-8 bg-gray-50">
|
176 |
+
<div class="max-w-7xl mx-auto">
|
177 |
+
<div class="text-center mb-12">
|
178 |
+
<h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">
|
179 |
+
Get In Touch
|
180 |
+
</h2>
|
181 |
+
<p class="mt-4 max-w-2xl text-xl text-gray-500 mx-auto">
|
182 |
+
Let's connect and collaborate on interesting projects
|
183 |
+
</p>
|
184 |
+
</div>
|
185 |
+
|
186 |
+
<div class="bg-white shadow-xl rounded-lg overflow-hidden">
|
187 |
+
<div class="grid grid-cols-1 md:grid-cols-2">
|
188 |
+
<div class="p-8 md:p-12">
|
189 |
+
<h3 class="text-2xl font-bold text-gray-900 mb-4">Contact Information</h3>
|
190 |
+
<p class="text-gray-600 mb-6">Feel free to reach out for speaking engagements, consulting opportunities, or media inquiries.</p>
|
191 |
+
|
192 |
+
<div class="space-y-4">
|
193 |
+
<div class="flex items-start">
|
194 |
+
<div class="flex-shrink-0">
|
195 |
+
<i class="fas fa-envelope text-blue-500 text-xl"></i>
|
196 |
+
</div>
|
197 |
+
<div class="ml-3">
|
198 |
+
<p class="text-sm font-medium text-gray-500">Email</p>
|
199 |
+
<a href="mailto:[email protected]" class="text-base text-blue-600 hover:text-blue-800">[email protected]</a>
|
200 |
+
</div>
|
201 |
+
</div>
|
202 |
+
|
203 |
+
<div class="flex items-start">
|
204 |
+
<div class="flex-shrink-0">
|
205 |
+
<i class="fas fa-globe text-blue-500 text-xl"></i>
|
206 |
+
</div>
|
207 |
+
<div class="ml-3">
|
208 |
+
<p class="text-sm font-medium text-gray-500">Website</p>
|
209 |
+
<a href="https://jeremycaplan.com" target="_blank" class="text-base text-blue-600 hover:text-blue-800">jeremycaplan.com</a>
|
210 |
+
</div>
|
211 |
+
</div>
|
212 |
+
</div>
|
213 |
+
|
214 |
+
<div class="mt-8">
|
215 |
+
<h4 class="text-lg font-semibold text-gray-900 mb-4">Connect on Social Media</h4>
|
216 |
+
<div class="flex space-x-4">
|
217 |
+
<a href="https://linkedin.com/in/jeremycaplan" target="_blank" class="social-icon w-10 h-10 rounded-full bg-blue-100 flex items-center justify-center text-blue-600 hover:bg-blue-200 transition duration-150 ease-in-out">
|
218 |
+
<i class="fab fa-linkedin-in text-lg"></i>
|
219 |
+
</a>
|
220 |
+
<a href="https://x.com/jeremycaplan" target="_blank" class="social-icon w-10 h-10 rounded-full bg-blue-100 flex items-center justify-center text-blue-600 hover:bg-blue-200 transition duration-150 ease-in-out">
|
221 |
+
<i class="fab fa-twitter text-lg"></i>
|
222 |
+
</a>
|
223 |
+
<a href="https://youtube.com/jeremycaplan" target="_blank" class="social-icon w-10 h-10 rounded-full bg-red-100 flex items-center justify-center text-red-600 hover:bg-red-200 transition duration-150 ease-in-out">
|
224 |
+
<i class="fab fa-youtube text-lg"></i>
|
225 |
+
</a>
|
226 |
+
<a href="https://wondertools.substack.com" target="_blank" class="social-icon w-10 h-10 rounded-full bg-green-100 flex items-center justify-center text-green-600 hover:bg-green-200 transition duration-150 ease-in-out">
|
227 |
+
<i class="fas fa-newspaper text-lg"></i>
|
228 |
+
</a>
|
229 |
+
</div>
|
230 |
+
</div>
|
231 |
+
</div>
|
232 |
+
|
233 |
+
<div class="bg-gray-50 p-8 md:p-12">
|
234 |
+
<h3 class="text-2xl font-bold text-gray-900 mb-4">Send a Message</h3>
|
235 |
+
<form class="space-y-6">
|
236 |
+
<div>
|
237 |
+
<label for="name" class="block text-sm font-medium text-gray-700">Name</label>
|
238 |
+
<input type="text" id="name" name="name" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500">
|
239 |
+
</div>
|
240 |
+
|
241 |
+
<div>
|
242 |
+
<label for="email" class="block text-sm font-medium text-gray-700">Email</label>
|
243 |
+
<input type="email" id="email" name="email" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500">
|
244 |
+
</div>
|
245 |
+
|
246 |
+
<div>
|
247 |
+
<label for="message" class="block text-sm font-medium text-gray-700">Message</label>
|
248 |
+
<textarea id="message" name="message" rows="4" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500"></textarea>
|
249 |
+
</div>
|
250 |
+
|
251 |
+
<div>
|
252 |
+
<button type="submit" class="w-full flex justify-center py-3 px-4 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-blue-600 hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 transition duration-150 ease-in-out">
|
253 |
+
Send Message
|
254 |
+
</button>
|
255 |
+
</div>
|
256 |
+
</form>
|
257 |
+
</div>
|
258 |
+
</div>
|
259 |
+
</div>
|
260 |
+
</div>
|
261 |
+
</section>
|
262 |
+
|
263 |
+
<!-- Footer -->
|
264 |
+
<footer class="bg-gray-900 text-white py-12 px-4 sm:px-6 lg:px-8">
|
265 |
+
<div class="max-w-7xl mx-auto">
|
266 |
+
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
|
267 |
+
<div>
|
268 |
+
<h3 class="text-lg font-semibold mb-4">Jeremy Caplan</h3>
|
269 |
+
<p class="text-gray-400">Educator, writer and media innovator helping people work smarter and learn better.</p>
|
270 |
+
</div>
|
271 |
+
|
272 |
+
<div>
|
273 |
+
<h3 class="text-lg font-semibold mb-4">Quick Links</h3>
|
274 |
+
<ul class="space-y-2">
|
275 |
+
<li><a href="https://jeremycaplan.com" target="_blank" class="text-gray-400 hover:text-white transition duration-150 ease-in-out">Personal Website</a></li>
|
276 |
+
<li><a href="https://wondertools.substack.com" target="_blank" class="text-gray-400 hover:text-white transition duration-150 ease-in-out">Wonder Tools Newsletter</a></li>
|
277 |
+
<li><a href="https://youtube.com/jeremycaplan" target="_blank" class="text-gray-400 hover:text-white transition duration-150 ease-in-out">YouTube Channel</a></li>
|
278 |
+
</ul>
|
279 |
+
</div>
|
280 |
+
|
281 |
+
<div>
|
282 |
+
<h3 class="text-lg font-semibold mb-4">Connect</h3>
|
283 |
+
<div class="flex space-x-4">
|
284 |
+
<a href="https://linkedin.com/in/jeremycaplan" target="_blank" class="text-gray-400 hover:text-white transition duration-150 ease-in-out">
|
285 |
+
<i class="fab fa-linkedin-in text-xl"></i>
|
286 |
+
</a>
|
287 |
+
<a href="https://x.com/jeremycaplan" target="_blank" class="text-gray-400 hover:text-white transition duration-150 ease-in-out">
|
288 |
+
<i class="fab fa-twitter text-xl"></i>
|
289 |
+
</a>
|
290 |
+
<a href="https://youtube.com/jeremycaplan" target="_blank" class="text-gray-400 hover:text-white transition duration-150 ease-in-out">
|
291 |
+
<i class="fab fa-youtube text-xl"></i>
|
292 |
+
</a>
|
293 |
+
</div>
|
294 |
+
</div>
|
295 |
+
</div>
|
296 |
+
|
297 |
+
<div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
|
298 |
+
<p class="text-gray-400 text-sm">© 2023 Jeremy Caplan. All rights reserved.</p>
|
299 |
+
<div class="mt-4 md:mt-0">
|
300 |
+
<a href="#" class="text-gray-400 hover:text-white text-sm mr-4">Privacy Policy</a>
|
301 |
+
<a href="#" class="text-gray-400 hover:text-white text-sm">Terms of Service</a>
|
302 |
+
</div>
|
303 |
+
</div>
|
304 |
+
</div>
|
305 |
+
</footer>
|
306 |
+
|
307 |
+
<script>
|
308 |
+
// Smooth scrolling for anchor links
|
309 |
+
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
310 |
+
anchor.addEventListener('click', function (e) {
|
311 |
+
e.preventDefault();
|
312 |
+
|
313 |
+
document.querySelector(this.getAttribute('href')).scrollIntoView({
|
314 |
+
behavior: 'smooth'
|
315 |
+
});
|
316 |
+
});
|
317 |
+
});
|
318 |
+
</script>
|
319 |
+
<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=jeremycaplan/my-jc-landing-page-demo" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
|
320 |
+
</html>
|