File size: 10,098 Bytes
55e57ba
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<!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>