icosajim commited on
Commit
cbee043
·
verified ·
1 Parent(s): 728573e

🏠 Homepage Content Plan for Black Artists Archive ✅ Goals of the Homepage: Instantly communicate BAA's purpose and values Invite engagement: exploring the archive, joining programs, supporting the mission Establish credibility and cultural relevance Prioritize community voice and accessibility 1. Hero Section (Full-width banner) Headline: Preserving Black Artistic Legacies. Empowering Future Voices. Subhead: The Black Artists Archive is a living, evolving record of Black creativity from Detroit and beyond—honoring artists, curators, and cultural stewards through archival storytelling, education, and community action. Primary CTA Buttons: 🔍 Explore the Archive 🎓 Learn about BCI (Black Curatorial Institute) Background Image: A collage of archival photos, art pieces, or Detroit-based Black art scenes. 2. About Us Snapshot Headline: What We Stand For Body Copy: The Black Artists Archive (BAA) is a community-rooted initiative focused on preserving, amplifying, and celebrating Black artistic contributions—especially from Detroit and the Midwest. Through our digital and physical archive, educational programs, and cultural events, we aim to foster a more equitable and representative art historical record. CTA (link style): → Learn more about our mission 3. Featured Initiative: Black Curatorial Institute Headline: Curating with Care and Purpose Body Copy: The Black Curatorial Institute (BCI) is a groundbreaking program equipping the next generation of curators, scholars, and cultural workers. BCI centers community-responsive practices, ethical curation, and the elevation of Black perspectives within the arts. CTA Button: 🎓 Join or Support the BCI 4. Spotlight: Recent Additions to the Archive Headline: New Voices, Rediscovered Histories Format: 3–4 image tiles with artist name, medium, and a short description or quote Example Copy (for tile): Elaine Sanford (b. 1946) “Textile artist and social historian whose quilts captured the changing neighborhoods of 1960s Detroit.” CTA: → Browse the full Archive 5. Upcoming Events / Workshops Headline: Engage With the Archive in Action List Format (upcoming 3 events/workshops): [Date] – Community Oral History Night [Date] – Workshop: Caring for Your Own Creative Legacy [Date] – Pop-up Exhibit: “Black Futures in Print” CTA Button: 📅 View All Events 6. How You Can Support Headline: Be Part of the Movement Body Copy: This archive thrives through community support—whether by contributing materials, participating in our programs, or donating to fund our work. 3 CTAs with Icons: 📥 Submit to the Archive 💬 Volunteer or Share Your Story 💖 Donate to Support 7. Footer Sections: Quick Links: Archive | BCI | Events | About | Contact Contact Info: Email, Social Media, Location Newsletter Signup: “Get updates on artists, events, and archive news.” - Follow Up Deployment

Browse files
Files changed (1) hide show
  1. index.html +300 -233
index.html CHANGED
@@ -3,344 +3,411 @@
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>Black Artists Archive | Preserving Black Artistic Legacies</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=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;600;700&display=swap');
11
 
12
  body {
13
- font-family: 'Poppins', sans-serif;
 
 
 
 
14
  }
15
 
16
  .hero-bg {
17
- background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1400&q=80');
18
  background-size: cover;
19
  background-position: center;
20
  }
21
 
22
- .artist-tile {
23
- transition: all 0.3s ease;
 
24
  }
25
 
26
- .artist-tile:hover {
27
- transform: translateY(-5px);
28
- box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
29
- }
30
-
31
- .event-card {
32
- transition: all 0.3s ease;
33
  }
34
 
35
- .event-card:hover {
36
  transform: translateY(-5px);
37
- box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
38
  }
39
 
40
- .support-card {
41
  transition: all 0.3s ease;
42
  }
43
 
44
- .support-card:hover {
45
  transform: scale(1.03);
46
  }
47
  </style>
48
  </head>
49
- <body class="bg-gray-50 text-gray-900">
50
  <!-- Navigation -->
51
- <nav class="bg-black text-white py-4 px-6 shadow-md">
52
  <div class="container mx-auto flex justify-between items-center">
53
- <div class="flex items-center space-x-2">
54
- <i class="fas fa-archive text-2xl text-yellow-400"></i>
55
- <span class="text-xl font-bold">Black Artists Archive</span>
56
- </div>
57
  <div class="hidden md:flex space-x-8">
58
- <a href="#" class="hover:text-yellow-400 transition">Archive</a>
59
- <a href="#" class="hover:text-yellow-400 transition">BCI</a>
60
  <a href="#" class="hover:text-yellow-400 transition">Events</a>
61
- <a href="#" class="hover:text-yellow-400 transition">About</a>
62
  <a href="#" class="hover:text-yellow-400 transition">Contact</a>
63
  </div>
64
- <button class="md:hidden text-2xl">
65
- <i class="fas fa-bars"></i>
66
- </button>
 
 
 
 
 
 
 
 
 
 
67
  </div>
68
  </nav>
69
 
70
  <!-- Hero Section -->
71
- <section class="hero-bg text-white py-24 px-6">
72
- <div class="container mx-auto max-w-4xl text-center">
73
- <h1 class="text-4xl md:text-6xl font-bold mb-6 font-serif">Preserving Black Artistic Legacies. Empowering Future Voices.</h1>
74
- <p class="text-xl md:text-2xl mb-10 leading-relaxed">The Black Artists Archive is a living, evolving record of Black creativity from Detroit and beyond—honoring artists, curators, and cultural stewards through archival storytelling, education, and community action.</p>
75
- <div class="flex flex-col sm:flex-row justify-center gap-4">
76
- <button class="bg-yellow-400 hover:bg-yellow-500 text-black font-bold py-3 px-8 rounded-full transition flex items-center justify-center gap-2">
77
- <i class="fas fa-search"></i> Explore the Archive
78
- </button>
79
- <button class="bg-transparent hover:bg-white hover:text-black border-2 border-white text-white font-bold py-3 px-8 rounded-full transition flex items-center justify-center gap-2">
80
- <i class="fas fa-graduation-cap"></i> Learn about BCI
81
- </button>
82
- </div>
83
  </div>
84
  </section>
85
 
86
- <!-- About Us Snapshot -->
87
- <section class="py-16 px-6 bg-white">
88
- <div class="container mx-auto max-w-4xl">
89
- <h2 class="text-3xl font-bold mb-8 text-center font-serif">What We Stand For</h2>
90
- <p class="text-lg mb-8 text-center leading-relaxed">
91
- The Black Artists Archive (BAA) is a community-rooted initiative focused on preserving, amplifying, and celebrating Black artistic contributions—especially from Detroit and the Midwest. Through our digital and physical archive, educational programs, and cultural events, we aim to foster a more equitable and representative art historical record.
92
- </p>
 
 
93
  <div class="text-center">
94
- <a href="#" class="inline-flex items-center text-black font-bold hover:text-yellow-600 transition">
95
- Learn more about our mission <i class="fas fa-arrow-right ml-2"></i>
96
- </a>
97
  </div>
98
  </div>
99
  </section>
100
 
101
- <!-- Featured Initiative: Black Curatorial Institute -->
102
- <section class="py-16 px-6 bg-gray-100">
103
- <div class="container mx-auto max-w-4xl">
104
- <div class="flex flex-col md:flex-row items-center gap-8">
105
- <div class="md:w-1/2">
106
- <img src="https://images.unsplash.com/photo-1562564055-71e051d33c19?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Black Curatorial Institute" class="rounded-lg shadow-lg w-full">
 
 
 
 
 
 
 
 
 
 
 
 
107
  </div>
108
- <div class="md:w-1/2">
109
- <h2 class="text-3xl font-bold mb-6 font-serif">Curating with Care and Purpose</h2>
110
- <p class="text-lg mb-6 leading-relaxed">
111
- The Black Curatorial Institute (BCI) is a groundbreaking program equipping the next generation of curators, scholars, and cultural workers. BCI centers community-responsive practices, ethical curation, and the elevation of Black perspectives within the arts.
 
 
 
 
 
112
  </p>
113
- <button class="bg-black hover:bg-gray-800 text-white font-bold py-3 px-8 rounded-full transition flex items-center gap-2">
114
- <i class="fas fa-graduation-cap"></i> Join or Support the BCI
115
- </button>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
116
  </div>
117
  </div>
118
  </div>
119
  </section>
120
 
121
- <!-- Spotlight: Recent Additions to the Archive -->
122
- <section class="py-16 px-6 bg-white">
123
  <div class="container mx-auto">
124
- <h2 class="text-3xl font-bold mb-12 text-center font-serif">New Voices, Rediscovered Histories</h2>
125
- <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
126
- <!-- Artist 1 -->
127
- <div class="artist-tile bg-white rounded-lg overflow-hidden shadow-md">
128
- <img src="https://images.unsplash.com/photo-1494790108377-be9c29b29330?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80" alt="Elaine Sanford" class="w-full h-48 object-cover">
129
- <div class="p-6">
130
- <h3 class="text-xl font-bold mb-2">Elaine Sanford (b. 1946)</h3>
131
- <p class="text-gray-600 mb-4">"Textile artist and social historian whose quilts captured the changing neighborhoods of 1960s Detroit."</p>
132
- <a href="#" class="text-yellow-600 hover:text-yellow-800 font-medium">View Work →</a>
133
- </div>
134
- </div>
135
-
136
- <!-- Artist 2 -->
137
- <div class="artist-tile bg-white rounded-lg overflow-hidden shadow-md">
138
- <img src="https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80" alt="Marcus Johnson" class="w-full h-48 object-cover">
139
- <div class="p-6">
140
- <h3 class="text-xl font-bold mb-2">Marcus Johnson (1932-2009)</h3>
141
- <p class="text-gray-600 mb-4">Painter and muralist known for his vibrant depictions of Detroit's jazz scene and urban landscapes.</p>
142
- <a href="#" class="text-yellow-600 hover:text-yellow-800 font-medium">View Work →</a>
143
- </div>
144
- </div>
145
-
146
- <!-- Artist 3 -->
147
- <div class="artist-tile bg-white rounded-lg overflow-hidden shadow-md">
148
- <img src="https://images.unsplash.com/photo-1524504388940-b1c1722653e1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80" alt="Aisha Thompson" class="w-full h-48 object-cover">
149
- <div class="p-6">
150
- <h3 class="text-xl font-bold mb-2">Aisha Thompson (b. 1978)</h3>
151
- <p class="text-gray-600 mb-4">Mixed-media artist exploring themes of identity, migration, and African diaspora through sculpture.</p>
152
- <a href="#" class="text-yellow-600 hover:text-yellow-800 font-medium">View Work →</a>
153
  </div>
 
 
 
154
  </div>
155
 
156
- <!-- Artist 4 -->
157
- <div class="artist-tile bg-white rounded-lg overflow-hidden shadow-md">
158
- <img src="https://images.unsplash.com/photo-1544005313-94ddf0286df2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=688&q=80" alt="James Watkins" class="w-full h-48 object-cover">
159
- <div class="p-6">
160
- <h3 class="text-xl font-bold mb-2">James Watkins (1955-2017)</h3>
161
- <p class="text-gray-600 mb-4">Photographer documenting Detroit's underground music scene and political movements.</p>
162
- <a href="#" class="text-yellow-600 hover:text-yellow-800 font-medium">View Work →</a>
 
 
 
163
  </div>
 
 
 
164
  </div>
165
  </div>
166
- <div class="text-center mt-12">
167
- <button class="bg-black hover:bg-gray-800 text-white font-bold py-3 px-8 rounded-full transition">
168
- Browse the full Archive
169
- </button>
170
- </div>
171
  </div>
172
  </section>
173
 
174
- <!-- Upcoming Events / Workshops -->
175
- <section class="py-16 px-6 bg-gray-100">
176
- <div class="container mx-auto max-w-4xl">
177
- <h2 class="text-3xl font-bold mb-12 text-center font-serif">Engage With the Archive in Action</h2>
 
 
 
178
 
179
- <div class="grid grid-cols-1 md:grid-cols-3 gap-6">
180
- <!-- Event 1 -->
181
- <div class="event-card bg-white rounded-lg overflow-hidden shadow-md">
182
- <div class="bg-yellow-400 text-black py-3 px-6">
183
- <p class="font-bold">June 15, 2023</p>
184
- </div>
185
  <div class="p-6">
186
- <h3 class="text-xl font-bold mb-4">Community Oral History Night</h3>
187
- <p class="text-gray-600 mb-4">Join us for an evening of storytelling as we record and preserve personal narratives from Detroit's creative community.</p>
188
- <a href="#" class="text-yellow-600 hover:text-yellow-800 font-medium">Learn More →</a>
 
 
189
  </div>
190
  </div>
191
 
192
- <!-- Event 2 -->
193
- <div class="event-card bg-white rounded-lg overflow-hidden shadow-md">
194
- <div class="bg-yellow-400 text-black py-3 px-6">
195
- <p class="font-bold">July 8, 2023</p>
196
- </div>
197
  <div class="p-6">
198
- <h3 class="text-xl font-bold mb-4">Workshop: Caring for Your Own Creative Legacy</h3>
199
- <p class="text-gray-600 mb-4">Learn archival best practices to preserve your artwork, writings, and creative materials for future generations.</p>
200
- <a href="#" class="text-yellow-600 hover:text-yellow-800 font-medium">Learn More →</a>
 
 
201
  </div>
202
  </div>
203
 
204
- <!-- Event 3 -->
205
- <div class="event-card bg-white rounded-lg overflow-hidden shadow-md">
206
- <div class="bg-yellow-400 text-black py-3 px-6">
207
- <p class="font-bold">August 22, 2023</p>
208
- </div>
209
  <div class="p-6">
210
- <h3 class="text-xl font-bold mb-4">Pop-up Exhibit: "Black Futures in Print"</h3>
211
- <p class="text-gray-600 mb-4">Exploring the radical printmaking traditions of Detroit's Black artists and their visions for the future.</p>
212
- <a href="#" class="text-yellow-600 hover:text-yellow-800 font-medium">Learn More →</a>
 
 
213
  </div>
214
  </div>
215
  </div>
216
 
217
- <div class="text-center mt-12">
218
- <button class="bg-black hover:bg-gray-800 text-white font-bold py-3 px-8 rounded-full transition flex items-center gap-2 mx-auto">
219
- <i class="far fa-calendar-alt"></i> View All Events
220
  </button>
221
  </div>
222
  </div>
223
  </section>
224
 
225
- <!-- How You Can Support -->
226
- <section class="py-16 px-6 bg-black text-white">
227
- <div class="container mx-auto max-w-4xl">
228
- <h2 class="text-3xl font-bold mb-12 text-center font-serif">Be Part of the Movement</h2>
229
- <p class="text-xl mb-12 text-center leading-relaxed">
230
- This archive thrives through community support—whether by contributing materials, participating in our programs, or donating to fund our work.
231
- </p>
232
-
233
- <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
234
- <!-- Support Option 1 -->
235
- <div class="support-card bg-gray-900 rounded-lg p-8 text-center">
236
- <div class="text-4xl mb-4 text-yellow-400">
237
- <i class="fas fa-inbox"></i>
238
- </div>
239
- <h3 class="text-xl font-bold mb-4">Submit to the Archive</h3>
240
- <p class="mb-6">Share your artwork, documents, or family collections to help expand our historical record.</p>
241
- <button class="bg-yellow-400 hover:bg-yellow-500 text-black font-bold py-2 px-6 rounded-full transition">
242
- Learn How
243
- </button>
244
- </div>
245
-
246
- <!-- Support Option 2 -->
247
- <div class="support-card bg-gray-900 rounded-lg p-8 text-center">
248
- <div class="text-4xl mb-4 text-yellow-400">
249
- <i class="fas fa-comments"></i>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
250
  </div>
251
- <h3 class="text-xl font-bold mb-4">Volunteer or Share Your Story</h3>
252
- <p class="mb-6">Contribute your time, skills, or personal experiences to our growing community.</p>
253
- <button class="bg-yellow-400 hover:bg-yellow-500 text-black font-bold py-2 px-6 rounded-full transition">
254
- Get Involved
255
- </button>
256
  </div>
257
 
258
- <!-- Support Option 3 -->
259
- <div class="support-card bg-gray-900 rounded-lg p-8 text-center">
260
- <div class="text-4xl mb-4 text-yellow-400">
261
- <i class="fas fa-heart"></i>
262
- </div>
263
- <h3 class="text-xl font-bold mb-4">Donate to Support</h3>
264
- <p class="mb-6">Your financial contributions help sustain our programs and preserve Black artistic heritage.</p>
265
- <button class="bg-yellow-400 hover:bg-yellow-500 text-black font-bold py-2 px-6 rounded-full transition">
266
- Give Now
267
- </button>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
268
  </div>
269
  </div>
270
  </div>
271
  </section>
272
 
 
 
 
 
 
 
 
 
 
 
 
 
 
273
  <!-- Footer -->
274
- <footer class="bg-gray-100 py-12 px-6">
275
- <div class="container mx-auto max-w-6xl">
276
- <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
277
- <!-- Quick Links -->
278
  <div>
279
- <h3 class="text-lg font-bold mb-4">Quick Links</h3>
280
- <ul class="space-y-2">
281
- <li><a href="#" class="hover:text-yellow-600 transition">Archive</a></li>
282
- <li><a href="#" class="hover:text-yellow-600 transition">BCI</a></li>
283
- <li><a href="#" class="hover:text-yellow-600 transition">Events</a></li>
284
- <li><a href="#" class="hover:text-yellow-600 transition">About</a></li>
285
- <li><a href="#" class="hover:text-yellow-600 transition">Contact</a></li>
286
  </ul>
287
  </div>
288
 
289
- <!-- Contact Info -->
290
  <div>
291
- <h3 class="text-lg font-bold mb-4">Contact Us</h3>
292
- <ul class="space-y-2">
293
- <li class="flex items-center gap-2">
294
- <i class="fas fa-envelope text-yellow-600"></i>
295
- <a href="mailto:info@blackartistsarchive.org" class="hover:text-yellow-600 transition">info@blackartistsarchive.org</a>
296
- </li>
297
- <li class="flex items-center gap-2">
298
- <i class="fas fa-map-marker-alt text-yellow-600"></i>
299
- <span>Detroit, MI</span>
300
- </li>
301
  </ul>
302
- <div class="mt-4 flex space-x-4">
303
- <a href="#" class="text-gray-700 hover:text-black transition"><i class="fab fa-twitter text-xl"></i></a>
304
- <a href="#" class="text-gray-700 hover:text-black transition"><i class="fab fa-instagram text-xl"></i></a>
305
- <a href="#" class="text-gray-700 hover:text-black transition"><i class="fab fa-facebook text-xl"></i></a>
306
- </div>
307
  </div>
308
 
309
- <!-- Newsletter -->
310
- <div class="md:col-span-2">
311
- <h3 class="text-lg font-bold mb-4">Get updates on artists, events, and archive news.</h3>
312
- <form class="flex flex-col sm:flex-row gap-2">
313
- <input type="email" placeholder="Your email address" class="flex-grow px-4 py-2 rounded border border-gray-300 focus:outline-none focus:ring-2 focus:ring-yellow-400">
314
- <button type="submit" class="bg-black hover:bg-gray-800 text-white font-bold py-2 px-6 rounded transition">
315
- Subscribe
316
- </button>
317
- </form>
318
- <p class="text-sm mt-2 text-gray-600">We respect your privacy. Unsubscribe at any time.</p>
 
 
 
 
 
 
319
  </div>
320
  </div>
321
 
322
- <div class="border-t border-gray-300 mt-12 pt-8 text-center text-gray-600">
323
- <p>© 2023 Black Artists Archive. All rights reserved.</p>
324
  </div>
325
  </div>
326
  </footer>
327
 
328
  <script>
329
- // Mobile menu toggle functionality
330
- document.querySelector('button.md\\:hidden').addEventListener('click', function() {
331
- const navLinks = document.querySelector('.md\\:flex.space-x-8');
332
- navLinks.classList.toggle('hidden');
333
- navLinks.classList.toggle('flex');
334
- navLinks.classList.toggle('flex-col');
335
- navLinks.classList.toggle('absolute');
336
- navLinks.classList.toggle('top-16');
337
- navLinks.classList.toggle('right-6');
338
- navLinks.classList.toggle('bg-black');
339
- navLinks.classList.toggle('p-4');
340
- navLinks.classList.toggle('rounded');
341
- navLinks.classList.toggle('shadow-lg');
342
- navLinks.classList.toggle('space-y-4');
343
- navLinks.classList.toggle('space-x-0');
 
 
 
 
 
 
344
  });
345
  </script>
346
  <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=icosajim/baa-1" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
 
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Black Artists Archive</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=Playfair+Display:wght@400;700&family=Roboto:wght@300;400;500;700&display=swap');
11
 
12
  body {
13
+ font-family: 'Roboto', sans-serif;
14
+ }
15
+
16
+ .title-font {
17
+ font-family: 'Playfair Display', serif;
18
  }
19
 
20
  .hero-bg {
21
+ background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1964&q=80');
22
  background-size: cover;
23
  background-position: center;
24
  }
25
 
26
+ .marquee {
27
+ animation: scroll 30s linear infinite;
28
+ white-space: nowrap;
29
  }
30
 
31
+ @keyframes scroll {
32
+ 0% { transform: translateX(0); }
33
+ 100% { transform: translateX(-50%); }
 
 
 
 
34
  }
35
 
36
+ .pillar-card:hover {
37
  transform: translateY(-5px);
38
+ box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
39
  }
40
 
41
+ .resource-card {
42
  transition: all 0.3s ease;
43
  }
44
 
45
+ .resource-card:hover {
46
  transform: scale(1.03);
47
  }
48
  </style>
49
  </head>
50
+ <body class="bg-gray-50">
51
  <!-- Navigation -->
52
+ <nav class="bg-black text-white py-4 px-6 sticky top-0 z-50 shadow-md">
53
  <div class="container mx-auto flex justify-between items-center">
54
+ <div class="text-2xl font-bold title-font">Black Artists Archive</div>
 
 
 
55
  <div class="hidden md:flex space-x-8">
56
+ <a href="#" class="hover:text-yellow-400 transition">About Us</a>
57
+ <a href="#" class="hover:text-yellow-400 transition">Brand Pillars</a>
58
  <a href="#" class="hover:text-yellow-400 transition">Events</a>
59
+ <a href="#" class="hover:text-yellow-400 transition">Library & Research</a>
60
  <a href="#" class="hover:text-yellow-400 transition">Contact</a>
61
  </div>
62
+ <div class="md:hidden">
63
+ <button id="menu-toggle" class="text-white focus:outline-none">
64
+ <i class="fas fa-bars text-2xl"></i>
65
+ </button>
66
+ </div>
67
+ </div>
68
+ <!-- Mobile Menu -->
69
+ <div id="mobile-menu" class="hidden md:hidden bg-black py-4 px-6 absolute left-0 right-0">
70
+ <a href="#" class="block py-2 hover:text-yellow-400">About Us</a>
71
+ <a href="#" class="block py-2 hover:text-yellow-400">Brand Pillars</a>
72
+ <a href="#" class="block py-2 hover:text-yellow-400">Events</a>
73
+ <a href="#" class="block py-2 hover:text-yellow-400">Library & Research</a>
74
+ <a href="#" class="block py-2 hover:text-yellow-400">Contact</a>
75
  </div>
76
  </nav>
77
 
78
  <!-- Hero Section -->
79
+ <section class="hero-bg text-white py-32 px-6">
80
+ <div class="container mx-auto text-center">
81
+ <h1 class="title-font text-4xl md:text-6xl font-bold mb-6">A community-centered space</h1>
82
+ <p class="text-xl md:text-2xl mb-10 max-w-3xl mx-auto">Dedicated to the preservation and celebration of Black art & cultural history.</p>
83
+ <button class="bg-yellow-500 hover:bg-yellow-600 text-black font-bold py-3 px-8 rounded-full transition duration-300 transform hover:scale-105">
84
+ Learn More
85
+ </button>
 
 
 
 
 
86
  </div>
87
  </section>
88
 
89
+ <!-- Mission Section -->
90
+ <section class="py-20 px-6 bg-white">
91
+ <div class="container mx-auto">
92
+ <div class="text-center mb-16">
93
+ <h2 class="title-font text-3xl md:text-4xl font-bold mb-4">Our Mission</h2>
94
+ <p class="text-gray-600 max-w-4xl mx-auto text-lg">
95
+ We strive to create dynamic spaces where we empower to engage & contribute to the vibrancy of Black artistic expressions.
96
+ </p>
97
+ </div>
98
  <div class="text-center">
99
+ <button class="border-2 border-black hover:bg-black hover:text-white font-bold py-3 px-8 rounded-full transition duration-300">
100
+ Explore More
101
+ </button>
102
  </div>
103
  </div>
104
  </section>
105
 
106
+ <!-- Brand Pillars -->
107
+ <section class="py-20 px-6 bg-gray-100">
108
+ <div class="container mx-auto">
109
+ <h2 class="title-font text-3xl md:text-4xl font-bold mb-16 text-center">Our Brand Pillars</h2>
110
+
111
+ <div class="grid md:grid-cols-3 gap-10">
112
+ <!-- Pillar 1 -->
113
+ <div class="pillar-card bg-white p-8 rounded-lg shadow-md transition duration-300">
114
+ <div class="text-yellow-500 text-4xl mb-4">
115
+ <i class="fas fa-archive"></i>
116
+ </div>
117
+ <h3 class="title-font text-2xl font-bold mb-4">The Archive</h3>
118
+ <p class="text-gray-600 mb-6">
119
+ BAA's primary foundational center is our archive, which consists of both a digital and physical repository that documents, collects, and preserves the legacies of Black artists from Detroit & the Midwest region.
120
+ </p>
121
+ <a href="#" class="text-black font-semibold hover:text-yellow-500 transition flex items-center">
122
+ Learn More <i class="fas fa-arrow-right ml-2"></i>
123
+ </a>
124
  </div>
125
+
126
+ <!-- Pillar 2 -->
127
+ <div class="pillar-card bg-white p-8 rounded-lg shadow-md transition duration-300">
128
+ <div class="text-yellow-500 text-4xl mb-4">
129
+ <i class="fas fa-landmark"></i>
130
+ </div>
131
+ <h3 class="title-font text-2xl font-bold mb-4">Black Curatorial Institute</h3>
132
+ <p class="text-gray-600 mb-6">
133
+ The Black Curatorial Institute (BCI) creates a new professional development opportunity for arts professionals unlike any currently available in the sector. It is a new learning center advancing the curatorial experience.
134
  </p>
135
+ <a href="#" class="text-black font-semibold hover:text-yellow-500 transition flex items-center">
136
+ Learn More <i class="fas fa-arrow-right ml-2"></i>
137
+ </a>
138
+ </div>
139
+
140
+ <!-- Pillar 3 -->
141
+ <div class="pillar-card bg-white p-8 rounded-lg shadow-md transition duration-300">
142
+ <div class="text-yellow-500 text-4xl mb-4">
143
+ <i class="fas fa-users"></i>
144
+ </div>
145
+ <h3 class="title-font text-2xl font-bold mb-4">DUO Incubatory Residency</h3>
146
+ <p class="text-gray-600 mb-6">
147
+ Our third foundational initiative is DUO, a year-long artist/curator residency at the Black Artists Archive that sustains an artist/curator pair interested in experimental and contemporary praxis based in Black cultural frameworks.
148
+ </p>
149
+ <a href="#" class="text-black font-semibold hover:text-yellow-500 transition flex items-center">
150
+ Explore More <i class="fas fa-arrow-right ml-2"></i>
151
+ </a>
152
  </div>
153
  </div>
154
  </div>
155
  </section>
156
 
157
+ <!-- Events Section -->
158
+ <section class="py-20 px-6 bg-white">
159
  <div class="container mx-auto">
160
+ <div class="flex flex-col md:flex-row justify-between items-center mb-16">
161
+ <h2 class="title-font text-3xl md:text-4xl font-bold">Keep Up-to-Date with Our Latest Events</h2>
162
+ <button class="mt-6 md:mt-0 border-2 border-black hover:bg-black hover:text-white font-bold py-3 px-8 rounded-full transition duration-300">
163
+ Learn More
164
+ </button>
165
+ </div>
166
+
167
+ <div class="grid md:grid-cols-2 gap-8">
168
+ <div class="bg-gray-100 p-8 rounded-lg">
169
+ <div class="flex items-center mb-6">
170
+ <div class="bg-black text-white text-center py-2 px-4 rounded mr-6">
171
+ <div class="text-2xl font-bold">20</div>
172
+ <div class="text-sm">SEP</div>
173
+ </div>
174
+ <div>
175
+ <h3 class="title-font text-xl font-bold">Angles & Archives: Culinary Edition</h3>
176
+ <p class="text-gray-600">Exploring the intersection of food and art in Black culture</p>
177
+ </div>
 
 
 
 
 
 
 
 
 
 
 
178
  </div>
179
+ <button class="bg-black hover:bg-gray-800 text-white font-bold py-2 px-6 rounded-full transition duration-300">
180
+ Learn More
181
+ </button>
182
  </div>
183
 
184
+ <div class="bg-gray-100 p-8 rounded-lg">
185
+ <div class="flex items-center mb-6">
186
+ <div class="bg-black text-white text-center py-2 px-4 rounded mr-6">
187
+ <div class="text-2xl font-bold">15</div>
188
+ <div class="text-sm">OCT</div>
189
+ </div>
190
+ <div>
191
+ <h3 class="title-font text-xl font-bold">Soundscapes of Resistance</h3>
192
+ <p class="text-gray-600">A musical journey through Black protest art</p>
193
+ </div>
194
  </div>
195
+ <button class="bg-black hover:bg-gray-800 text-white font-bold py-2 px-6 rounded-full transition duration-300">
196
+ Learn More
197
+ </button>
198
  </div>
199
  </div>
 
 
 
 
 
200
  </div>
201
  </section>
202
 
203
+ <!-- Resources Section -->
204
+ <section class="py-20 px-6 bg-black text-white">
205
+ <div class="container mx-auto">
206
+ <h2 class="title-font text-3xl md:text-4xl font-bold mb-4 text-center">Discover Knowledge at Your Fingertips</h2>
207
+ <p class="text-gray-300 text-center mb-16 max-w-3xl mx-auto">
208
+ Access curated resources, rare collections, and archival materials celebrating Black artists in Detroit.
209
+ </p>
210
 
211
+ <div class="grid md:grid-cols-3 gap-8">
212
+ <!-- Resource 1 -->
213
+ <div class="resource-card bg-gray-900 rounded-lg overflow-hidden shadow-lg">
214
+ <div class="h-48 bg-cover bg-center" style="background-image: url('https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');"></div>
 
 
215
  <div class="p-6">
216
+ <h3 class="title-font text-xl font-bold mb-2">Music in The Black Canon</h3>
217
+ <p class="text-gray-300 mb-4">Vinyl Legacies</p>
218
+ <a href="#" class="text-yellow-400 font-semibold hover:text-yellow-300 transition flex items-center">
219
+ Learn More <i class="fas fa-arrow-right ml-2"></i>
220
+ </a>
221
  </div>
222
  </div>
223
 
224
+ <!-- Resource 2 -->
225
+ <div class="resource-card bg-gray-900 rounded-lg overflow-hidden shadow-lg">
226
+ <div class="h-48 bg-cover bg-center" style="background-image: url('https://images.unsplash.com/photo-1547036967-23d11aacaee0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');"></div>
 
 
227
  <div class="p-6">
228
+ <h3 class="title-font text-xl font-bold mb-2">Illuminating Artists</h3>
229
+ <p class="text-gray-300 mb-4">Plain Sight Archive</p>
230
+ <a href="#" class="text-yellow-400 font-semibold hover:text-yellow-300 transition flex items-center">
231
+ Learn More <i class="fas fa-arrow-right ml-2"></i>
232
+ </a>
233
  </div>
234
  </div>
235
 
236
+ <!-- Resource 3 -->
237
+ <div class="resource-card bg-gray-900 rounded-lg overflow-hidden shadow-lg">
238
+ <div class="h-48 bg-cover bg-center" style="background-image: url('https://images.unsplash.com/photo-1580130732473-4371105c1c73?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');"></div>
 
 
239
  <div class="p-6">
240
+ <h3 class="title-font text-xl font-bold mb-2">Archiving Black Detroit</h3>
241
+ <p class="text-gray-300 mb-4">Black Bottom Archives</p>
242
+ <a href="#" class="text-yellow-400 font-semibold hover:text-yellow-300 transition flex items-center">
243
+ Learn More <i class="fas fa-arrow-right ml-2"></i>
244
+ </a>
245
  </div>
246
  </div>
247
  </div>
248
 
249
+ <div class="text-center mt-16">
250
+ <button class="bg-yellow-500 hover:bg-yellow-600 text-black font-bold py-3 px-8 rounded-full transition duration-300">
251
+ Explore Resources
252
  </button>
253
  </div>
254
  </div>
255
  </section>
256
 
257
+ <!-- Marquee Section -->
258
+ <section class="bg-yellow-500 py-6 overflow-hidden">
259
+ <div class="marquee flex items-center">
260
+ <span class="text-2xl md:text-3xl font-bold mx-4">Ditch the Zoo Join the Farm!</span>
261
+ <span class="text-2xl md:text-3xl font-bold mx-4">Ditch the Zoo Join the Farm!</span>
262
+ <span class="text-2xl md:text-3xl font-bold mx-4">Ditch the Zoo Join the Farm!</span>
263
+ <span class="text-2xl md:text-3xl font-bold mx-4">Ditch the Zoo Join the Farm!</span>
264
+ <span class="text-2xl md:text-3xl font-bold mx-4">Ditch the Zoo Join the Farm!</span>
265
+ <span class="text-2xl md:text-3xl font-bold mx-4">Ditch the Zoo Join the Farm!</span>
266
+ <span class="text-2xl md:text-3xl font-bold mx-4">Ditch the Zoo Join the Farm!</span>
267
+ </div>
268
+ </section>
269
+
270
+ <!-- Donate Section -->
271
+ <section class="py-16 px-6 bg-white">
272
+ <div class="container mx-auto text-center">
273
+ <button class="bg-black hover:bg-gray-800 text-white font-bold py-4 px-12 rounded-full text-lg transition duration-300 transform hover:scale-105">
274
+ Donate
275
+ </button>
276
+ </div>
277
+ </section>
278
+
279
+ <!-- Contact Section -->
280
+ <section class="py-20 px-6 bg-gray-100">
281
+ <div class="container mx-auto">
282
+ <div class="grid md:grid-cols-2 gap-16">
283
+ <div>
284
+ <h2 class="title-font text-3xl md:text-4xl font-bold mb-6">Have questions?​ <br>Get in Touch!</h2>
285
+ <p class="text-gray-600 text-lg mb-8">
286
+ Your voice matters. Let's build the archive together.
287
+ </p>
288
+ <div class="space-y-6">
289
+ <div class="flex items-center">
290
+ <i class="fas fa-envelope text-yellow-500 text-xl mr-4"></i>
291
+ <a href="mailto:info@blackartistsarchive.org" class="hover:text-yellow-500 transition">info@blackartistsarchive.org</a>
292
+ </div>
293
+ <div class="flex items-center">
294
+ <i class="fas fa-phone text-yellow-500 text-xl mr-4"></i>
295
+ <a href="tel:313-263-6400" class="hover:text-yellow-500 transition">313-263-6400</a>
296
+ </div>
297
  </div>
 
 
 
 
 
298
  </div>
299
 
300
+ <div>
301
+ <form class="space-y-6">
302
+ <div class="grid md:grid-cols-2 gap-6">
303
+ <div>
304
+ <label for="first-name" class="block text-gray-700 mb-2">First Name</label>
305
+ <input type="text" id="first-name" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-yellow-500">
306
+ </div>
307
+ <div>
308
+ <label for="last-name" class="block text-gray-700 mb-2">Last Name</label>
309
+ <input type="text" id="last-name" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-yellow-500">
310
+ </div>
311
+ </div>
312
+ <div>
313
+ <label for="email" class="block text-gray-700 mb-2">Email</label>
314
+ <input type="email" id="email" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-yellow-500">
315
+ </div>
316
+ <div>
317
+ <label for="message" class="block text-gray-700 mb-2">Message</label>
318
+ <textarea id="message" rows="4" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-yellow-500"></textarea>
319
+ </div>
320
+ <button type="submit" class="bg-black hover:bg-gray-800 text-white font-bold py-3 px-8 rounded-full transition duration-300">
321
+ Send Message
322
+ </button>
323
+ </form>
324
  </div>
325
  </div>
326
  </div>
327
  </section>
328
 
329
+ <!-- Newsletter -->
330
+ <section class="py-16 px-6 bg-black text-white">
331
+ <div class="container mx-auto text-center">
332
+ <h3 class="title-font text-2xl md:text-3xl font-bold mb-4">Get monthly updates</h3>
333
+ <div class="max-w-md mx-auto flex">
334
+ <input type="email" placeholder="Email" class="flex-grow px-4 py-3 rounded-l-lg focus:outline-none text-black">
335
+ <button class="bg-yellow-500 hover:bg-yellow-600 text-black font-bold py-3 px-6 rounded-r-lg transition duration-300">
336
+ Subscribe
337
+ </button>
338
+ </div>
339
+ </div>
340
+ </section>
341
+
342
  <!-- Footer -->
343
+ <footer class="bg-gray-900 text-white py-12 px-6">
344
+ <div class="container mx-auto">
345
+ <div class="grid md:grid-cols-4 gap-10">
 
346
  <div>
347
+ <h4 class="title-font text-xl font-bold mb-6">About Us</h4>
348
+ <ul class="space-y-3">
349
+ <li><a href="#" class="hover:text-yellow-400 transition">Mission</a></li>
350
+ <li><a href="#" class="hover:text-yellow-400 transition">History</a></li>
351
+ <li><a href="#" class="hover:text-yellow-400 transition">Team</a></li>
 
 
352
  </ul>
353
  </div>
354
 
 
355
  <div>
356
+ <h4 class="title-font text-xl font-bold mb-6">Brand Pillars</h4>
357
+ <ul class="space-y-3">
358
+ <li><a href="#" class="hover:text-yellow-400 transition">The Archive</a></li>
359
+ <li><a href="#" class="hover:text-yellow-400 transition">Black Curatorial Institute</a></li>
360
+ <li><a href="#" class="hover:text-yellow-400 transition">DUO Incubatory Residency</a></li>
 
 
 
 
 
361
  </ul>
 
 
 
 
 
362
  </div>
363
 
364
+ <div>
365
+ <h4 class="title-font text-xl font-bold mb-6">Connect</h4>
366
+ <ul class="space-y-3">
367
+ <li><a href="#" class="hover:text-yellow-400 transition">Events</a></li>
368
+ <li><a href="#" class="hover:text-yellow-400 transition">Library & Research</a></li>
369
+ <li><a href="#" class="hover:text-yellow-400 transition">Contact Us</a></li>
370
+ <li><a href="#" class="hover:text-yellow-400 transition">Press</a></li>
371
+ </ul>
372
+ </div>
373
+
374
+ <div>
375
+ <h4 class="title-font text-xl font-bold mb-6">Legal</h4>
376
+ <ul class="space-y-3">
377
+ <li><a href="#" class="hover:text-yellow-400 transition">Terms and Conditions</a></li>
378
+ <li><a href="#" class="hover:text-yellow-400 transition">Privacy Policy</a></li>
379
+ </ul>
380
  </div>
381
  </div>
382
 
383
+ <div class="border-t border-gray-700 mt-12 pt-8 text-center text-gray-400">
384
+ <p>&copy; 2023 Black Artists Archive. All rights reserved.</p>
385
  </div>
386
  </div>
387
  </footer>
388
 
389
  <script>
390
+ // Mobile menu toggle
391
+ document.getElementById('menu-toggle').addEventListener('click', function() {
392
+ const menu = document.getElementById('mobile-menu');
393
+ menu.classList.toggle('hidden');
394
+ });
395
+
396
+ // Smooth scrolling for anchor links
397
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
398
+ anchor.addEventListener('click', function (e) {
399
+ e.preventDefault();
400
+
401
+ const targetId = this.getAttribute('href');
402
+ if (targetId === '#') return;
403
+
404
+ const targetElement = document.querySelector(targetId);
405
+ if (targetElement) {
406
+ targetElement.scrollIntoView({
407
+ behavior: 'smooth'
408
+ });
409
+ }
410
+ });
411
  });
412
  </script>
413
  <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=icosajim/baa-1" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>