dfw-creator-connect / index.html
tonynwright's picture
create a classified site for creators in dallas fort worth
55e57ba verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DFW Creator Connect | Classifieds for Dallas-Fort Worth Creators</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="components/navbar.js"></script>
<script src="components/creator-card.js"></script>
<script src="components/footer.js"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: {
500: '#6366f1',
},
secondary: {
500: '#f59e0b',
}
}
}
}
}
</script>
</head>
<body class="bg-gray-50">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-8">
<!-- Hero Section -->
<section class="text-center py-12">
<h1 class="text-4xl md:text-5xl font-bold text-gray-900 mb-4">Connect with DFW's <span class="text-primary-500">Creative Community</span></h1>
<p class="text-xl text-gray-600 max-w-2xl mx-auto">Find collaborators, services, and opportunities in the Dallas-Fort Worth creative scene.</p>
<div class="mt-8 flex justify-center gap-4">
<a href="/listings" class="bg-primary-500 hover:bg-primary-600 text-white px-6 py-3 rounded-lg font-medium transition">Browse Listings</a>
<a href="/post" class="border border-primary-500 text-primary-500 hover:bg-primary-50 px-6 py-3 rounded-lg font-medium transition">Post Listing</a>
</div>
</section>
<!-- Featured Creators Grid -->
<section class="mb-16">
<h2 class="text-2xl font-bold text-gray-900 mb-6">Featured Creators</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<custom-creator-card
name="Alex Rivera"
category="Photography"
skills="Portrait, Product, Event"
image="http://static.photos/people/640x360/1"
rating="4.8">
</custom-creator-card>
<custom-creator-card
name="Jamie Chen"
category="Graphic Design"
skills="Branding, Logos, Packaging"
image="http://static.photos/people/640x360/2"
rating="4.9">
</custom-creator-card>
<custom-creator-card
name="Taylor Smith"
category="Videography"
skills="Commercials, Music Videos"
image="http://static.photos/people/640x360/3"
rating="4.7">
</custom-creator-card>
</div>
</section>
<!-- Categories Section -->
<section class="mb-16">
<h2 class="text-2xl font-bold text-gray-900 mb-6">Browse Categories</h2>
<div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-6 gap-4">
<a href="/category/photography" class="category-card">
<div class="bg-white p-4 rounded-lg shadow-sm hover:shadow-md transition text-center">
<i data-feather="camera" class="w-8 h-8 text-primary-500 mx-auto mb-2"></i>
<h3 class="font-medium">Photography</h3>
</div>
</a>
<a href="/category/videography" class="category-card">
<div class="bg-white p-4 rounded-lg shadow-sm hover:shadow-md transition text-center">
<i data-feather="video" class="w-8 h-8 text-primary-500 mx-auto mb-2"></i>
<h3 class="font-medium">Videography</h3>
</div>
</a>
<a href="/category/design" class="category-card">
<div class="bg-white p-4 rounded-lg shadow-sm hover:shadow-md transition text-center">
<i data-feather="pen-tool" class="w-8 h-8 text-primary-500 mx-auto mb-2"></i>
<h3 class="font-medium">Design</h3>
</div>
</a>
<a href="/category/music" class="category-card">
<div class="bg-white p-4 rounded-lg shadow-sm hover:shadow-md transition text-center">
<i data-feather="music" class="w-8 h-8 text-primary-500 mx-auto mb-2"></i>
<h3 class="font-medium">Music</h3>
</div>
</a>
<a href="/category/writing" class="category-card">
<div class="bg-white p-4 rounded-lg shadow-sm hover:shadow-md transition text-center">
<i data-feather="edit" class="w-8 h-8 text-primary-500 mx-auto mb-2"></i>
<h3 class="font-medium">Writing</h3>
</div>
</a>
<a href="/category/development" class="category-card">
<div class="bg-white p-4 rounded-lg shadow-sm hover:shadow-md transition text-center">
<i data-feather="code" class="w-8 h-8 text-primary-500 mx-auto mb-2"></i>
<h3 class="font-medium">Development</h3>
</div>
</a>
</div>
</section>
<!-- Testimonials -->
<section class="bg-primary-50 rounded-xl p-8 mb-16">
<h2 class="text-2xl font-bold text-gray-900 mb-8 text-center">What Creators Are Saying</h2>
<div class="grid md:grid-cols-3 gap-6">
<div class="bg-white p-6 rounded-lg shadow-sm">
<div class="flex items-center mb-4">
<div class="text-yellow-400 flex">
<i data-feather="star" class="w-5 h-5 fill-current"></i>
<i data-feather="star" class="w-5 h-5 fill-current"></i>
<i data-feather="star" class="w-5 h-5 fill-current"></i>
<i data-feather="star" class="w-5 h-5 fill-current"></i>
<i data-feather="star" class="w-5 h-5 fill-current"></i>
</div>
</div>
<p class="text-gray-700 mb-4">"Found an amazing photographer for my product line through DFW Creator Connect. The process was seamless!"</p>
<div class="flex items-center">
<img src="http://static.photos/people/200x200/4" alt="Sarah Johnson" class="w-10 h-10 rounded-full mr-3">
<div>
<h4 class="font-medium">Sarah Johnson</h4>
<p class="text-sm text-gray-500">Small Business Owner</p>
</div>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm">
<div class="flex items-center mb-4">
<div class="text-yellow-400 flex">
<i data-feather="star" class="w-5 h-5 fill-current"></i>
<i data-feather="star" class="w-5 h-5 fill-current"></i>
<i data-feather="star" class="w-5 h-5 fill-current"></i>
<i data-feather="star" class="w-5 h-5 fill-current"></i>
<i data-feather="star" class="w-5 h-5"></i>
</div>
</div>
<p class="text-gray-700 mb-4">"As a freelance designer, this platform has helped me connect with clients and other creatives in the area."</p>
<div class="flex items-center">
<img src="http://static.photos/people/200x200/5" alt="Marcus Lee" class="w-10 h-10 rounded-full mr-3">
<div>
<h4 class="font-medium">Marcus Lee</h4>
<p class="text-sm text-gray-500">Graphic Designer</p>
</div>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm">
<div class="flex items-center mb-4">
<div class="text-yellow-400 flex">
<i data-feather="star" class="w-5 h-5 fill-current"></i>
<i data-feather="star" class="w-5 h-5 fill-current"></i>
<i data-feather="star" class="w-5 h-5 fill-current"></i>
<i data-feather="star" class="w-5 h-5 fill-current"></i>
<i data-feather="star" class="w-5 h-5 fill-current"></i>
</div>
</div>
<p class="text-gray-700 mb-4">"The best resource for creative professionals in DFW. I've booked several gigs through this platform."</p>
<div class="flex items-center">
<img src="http://static.photos/people/200x200/6" alt="Elena Rodriguez" class="w-10 h-10 rounded-full mr-3">
<div>
<h4 class="font-medium">Elena Rodriguez</h4>
<p class="text-sm text-gray-500">Videographer</p>
</div>
</div>
</div>
</div>
</section>
</main>
<custom-footer></custom-footer>
<script>
feather.replace();
</script>
<script src="script.js"></script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>