File size: 9,178 Bytes
e774c95
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ea2f048
e774c95
ea2f048
 
e774c95
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ba343fc
e774c95
 
 
 
 
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
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Resources | Spadak Code Learn</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <script src="https://unpkg.com/feather-icons"></script>
    <link rel="stylesheet" href="style.css">
    <script>
        tailwind.config = {
            darkMode: 'class',
            theme: {
                extend: {
                    colors: {
                        primary: {
                            500: '#f97316',
                        },
                        secondary: {
                            500: '#f59e0b',
                        }
                    }
                }
            }
        }
    </script>
</head>
<body class="bg-gray-900 text-gray-100">
    <!-- Navigation -->
    <nav class="fixed w-full nav-glass z-50">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="flex items-center justify-between h-16">
                <div class="flex items-center">
                    <div class="flex-shrink-0 flex items-center">
                        <i data-feather="code" class="text-amber-500"></i>
                        <span class="ml-2 text-xl font-bold text-orange-500">Spadak Code Learn</span>
                    </div>
                    <div class="hidden md:block">
                        <div class="ml-10 flex items-baseline space-x-4">
                            <a href="index.html" class="text-gray-300 hover:bg-gray-700 hover:text-white px-3 py-2 rounded-md text-sm font-medium">خانه | Home</a>
                            <a href="courses.html" class="text-gray-300 hover:bg-gray-700 hover:text-white px-3 py-2 rounded-md text-sm font-medium">دوره‌ها | Courses</a>
                            <a href="tutorials.html" class="text-gray-300 hover:bg-gray-700 hover:text-white px-3 py-2 rounded-md text-sm font-medium">آموزش‌ها | Tutorials</a>
                            <a href="resources.html" class="bg-gray-900 text-white px-3 py-2 rounded-md text-sm font-medium">منابع | Resources</a>
                            <a href="community.html" class="text-gray-300 hover:bg-gray-700 hover:text-white px-3 py-2 rounded-md text-sm font-medium">جامعه | Community</a>
                        </div>
                    </div>
                </div>
                <div class="hidden md:block">
                    <div class="ml-4 flex items-center md:ml-6">
                        <button type="button" class="bg-gray-800 p-1 rounded-full text-gray-400 hover:text-white focus:outline-none">
                            <i data-feather="search"></i>
                        </button>
                        <a href="signin.html" class="ml-4 bg-orange-500 hover:bg-orange-600 text-white px-4 py-2 rounded-md text-sm font-medium transition-colors duration-200">
                            ورود | Sign In
                        </a>
</div>
                </div>
            </div>
        </div>
    </nav>

    <!-- Resources Section -->
    <section class="pt-24 pb-16 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto">
        <div class="text-center mb-16">
            <h1 class="text-4xl font-extrabold text-white sm:text-5xl mb-4">
                <span class="block">Developer</span>
                <span class="block text-orange-500 bg-gradient-to-r from-orange-500 to-amber-500 bg-clip-text text-transparent">Resources</span>
            </h1>
            <p class="max-w-3xl mx-auto text-lg text-gray-300">
                Essential tools, cheatsheets, and references to help you in your coding journey.
            </p>
        </div>

        <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
            <!-- Resource 1 -->
            <div class="bg-gray-800 rounded-xl p-6 border border-gray-700 hover:border-orange-500 transition-all duration-300 hover:scale-[1.02]">
                <div class="flex items-center justify-center h-16 w-16 rounded-xl bg-gradient-to-br from-orange-500 to-amber-500 text-white mb-6">
                    <i data-feather="bookmark" class="w-6 h-6"></i>
                </div>
                <h3 class="text-xl font-bold text-white mb-4">Cheatsheets</h3>
                <p class="text-gray-300 mb-6">
                    Quick reference guides for HTML, CSS, JavaScript, and popular frameworks.
                </p>
                <a href="#" class="text-orange-500 hover:text-orange-400 font-medium flex items-center">
                    View All
                    <i data-feather="arrow-right" class="w-4 h-4 ml-2"></i>
                </a>
            </div>

            <!-- Resource 2 -->
            <div class="bg-gray-800 rounded-xl p-6 border border-gray-700 hover:border-orange-500 transition-all duration-300 hover:scale-[1.02]">
                <div class="flex items-center justify-center h-16 w-16 rounded-xl bg-gradient-to-br from-orange-500 to-amber-500 text-white mb-6">
                    <i data-feather="tool" class="w-6 h-6"></i>
                </div>
                <h3 class="text-xl font-bold text-white mb-4">Developer Tools</h3>
                <p class="text-gray-300 mb-6">
                    Essential browser extensions, IDEs, and productivity tools for developers.
                </p>
                <a href="#" class="text-orange-500 hover:text-orange-400 font-medium flex items-center">
                    View All
                    <i data-feather="arrow-right" class="w-4 h-4 ml-2"></i>
                </a>
            </div>

            <!-- Resource 3 -->
            <div class="bg-gray-800 rounded-xl p-6 border border-gray-700 hover:border-orange-500 transition-all duration-300 hover:scale-[1.02]">
                <div class="flex items-center justify-center h-16 w-16 rounded-xl bg-gradient-to-br from-orange-500 to-amber-500 text-white mb-6">
                    <i data-feather="book-open" class="w-6 h-6"></i>
                </div>
                <h3 class="text-xl font-bold text-white mb-4">Recommended Books</h3>
                <p class="text-gray-300 mb-6">
                    Curated list of the best programming books for web developers.
                </p>
                <a href="#" class="text-orange-500 hover:text-orange-400 font-medium flex items-center">
                    View All
                    <i data-feather="arrow-right" class="w-4 h-4 ml-2"></i>
                </a>
            </div>
        </div>
    </section>

    <!-- Footer -->
    <footer class="bg-gray-900 border-t border-gray-800">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
            <div class="grid grid-cols-2 md:grid-cols-4 gap-8">
                <div class="col-span-2">
                    <div class="flex items-center">
                        <i data-feather="code" class="text-amber-500"></i>
                        <span class="ml-2 text-xl font-bold text-orange-500">Spadak Code Learn</span>
                    </div>
                    <p class="mt-4 text-gray-300 text-sm">
                        Revolutionizing how developers learn. Join our community of passionate learners building the future with code.
                    </p>
                </div>
                <div>
                    <h3 class="text-sm font-semibold text-gray-200 tracking-wider uppercase">
                        Learn
                    </h3>
                    <ul class="mt-4 space-y-4">
                        <li>
                            <a href="courses.html" class="text-base text-gray-300 hover:text-white">
                                Courses
                            </a>
                        </li>
                        <li>
                            <a href="tutorials.html" class="text-base text-gray-300 hover:text-white">
                                Tutorials
                            </a>
                        </li>
                    </ul>
                </div>
                <div>
                    <h3 class="text-sm font-semibold text-gray-200 tracking-wider uppercase">
                        Company
                    </h3>
                    <ul class="mt-4 space-y-4">
                        <li>
                            <a href="about.html" class="text-base text-gray-300 hover:text-white">
                                About
                            </a>
                        </li>
                        <li>
                            <a href="#" class="text-base text-gray-300 hover:text-white">
                                Careers
                            </a>
                        </li>
                    </ul>
                </div>
            </div>
            <div class="mt-12 border-t border-gray-800 pt-8 flex flex-col md:flex-row justify-between">
                <p class="text-gray-400 text-sm">
                    &copy; 2023 Spadak Code Learn. All rights reserved.
                </p>
            </div>
        </div>
    </footer>
    <script src="script.js"></script>
    <script>
        feather.replace();
    </script>
</body>
</html>