Ardabossikossi commited on
Commit
8903cbd
Β·
verified Β·
1 Parent(s): 870814d

add a link that goes to discord server https://discord.gg/CJzDNf9D

Browse files
Files changed (2) hide show
  1. README.md +7 -4
  2. index.html +98 -19
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Codecrafters Haven
3
- emoji: πŸ‘
4
- colorFrom: blue
5
  colorTo: blue
 
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: CodeCrafters Haven πŸš€
3
+ colorFrom: purple
 
4
  colorTo: blue
5
+ emoji: 🐳
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite-v3
10
  ---
11
 
12
+ # Welcome to your new DeepSite project!
13
+ This project was created with [DeepSite](https://huggingface.co/deepsite).
index.html CHANGED
@@ -1,19 +1,98 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>DevHub Academy - Code Crafters Paradise</title>
7
+ <link rel="stylesheet" href="style.css">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
10
+ <script src="https://unpkg.com/feather-icons"></script>
11
+ <script src="components/navbar.js"></script>
12
+ <script src="components/footer.js"></script>
13
+ <script src="components/course-card.js"></script>
14
+ <script src="components/testimonial.js"></script>
15
+ </head>
16
+ <body class="bg-gray-50">
17
+ <custom-navbar></custom-navbar>
18
+
19
+ <!-- Hero Section -->
20
+ <section class="relative bg-gradient-to-r from-blue-600 to-indigo-800 text-white py-20">
21
+ <div class="container mx-auto px-6 text-center">
22
+ <h1 class="text-5xl font-bold mb-6">Transform Your Coding Skills</h1>
23
+ <p class="text-xl mb-8 max-w-2xl mx-auto">Join DevHub Academy and become part of the next generation of developers</p>
24
+ <div class="flex justify-center gap-4">
25
+ <a href="#courses" class="bg-white text-blue-600 px-8 py-3 rounded-full font-semibold hover:bg-gray-100 transition duration-300">Explore Courses</a>
26
+ <a href="#contact" class="border-2 border-white px-8 py-3 rounded-full font-semibold hover:bg-white hover:text-blue-600 transition duration-300">Contact Us</a>
27
+ <a href="https://discord.gg/CJzDNf9D" target="_blank" class="border-2 border-white px-8 py-3 rounded-full font-semibold hover:bg-white hover:text-blue-600 transition duration-300 flex items-center gap-2">
28
+ <i data-feather="message-circle"></i> Join Discord
29
+ </a>
30
+ </div>
31
+ </div>
32
+ <div class="absolute bottom-0 left-0 right-0 h-16 bg-white"></div>
33
+ </section>
34
+
35
+ <!-- Features Section -->
36
+ <section class="py-20 bg-white">
37
+ <div class="container mx-auto px-6">
38
+ <h2 class="text-3xl font-bold text-center mb-16">Why Choose DevHub Academy?</h2>
39
+ <div class="grid md:grid-cols-3 gap-10">
40
+ <div class="text-center">
41
+ <div class="bg-blue-100 w-20 h-20 rounded-full flex items-center justify-center mx-auto mb-6">
42
+ <i data-feather="code" class="w-10 h-10 text-blue-600"></i>
43
+ </div>
44
+ <h3 class="text-xl font-semibold mb-3">Hands-on Learning</h3>
45
+ <p class="text-gray-600">Learn by building real-world projects with expert guidance from industry professionals.</p>
46
+ </div>
47
+ <div class="text-center">
48
+ <div class="bg-blue-100 w-20 h-20 rounded-full flex items-center justify-center mx-auto mb-6">
49
+ <i data-feather="users" class="w-10 h-10 text-blue-600"></i>
50
+ </div>
51
+ <h3 class="text-xl font-semibold mb-3">Community Support</h3>
52
+ <p class="text-gray-600">Join a vibrant community of learners and mentors to accelerate your growth.</p>
53
+ </div>
54
+ <div class="text-center">
55
+ <div class="bg-blue-100 w-20 h-20 rounded-full flex items-center justify-center mx-auto mb-6">
56
+ <i data-feather="briefcase" class="w-10 h-10 text-blue-600"></i>
57
+ </div>
58
+ </div>
59
+ </div>
60
+ </section>
61
+
62
+ <!-- Discord Community Section -->
63
+ <section class="py-16 bg-indigo-800 text-white">
64
+ <div class="container mx-auto px-6 text-center">
65
+ <div class="max-w-2xl mx-auto">
66
+ <h2 class="text-3xl font-bold mb-6">Join Our Coding Community</h2>
67
+ <p class="text-xl mb-8">Connect with fellow learners, get help from mentors, and participate in coding challenges on our Discord server!</p>
68
+ <a href="https://discord.gg/CJzDNf9D" target="_blank" class="bg-white text-indigo-800 px-8 py-4 rounded-full font-bold hover:bg-gray-100 transition duration-300 inline-flex items-center gap-2">
69
+ <i data-feather="message-circle"></i> Join Now
70
+ </a>
71
+ </div>
72
+ </div>
73
+ </div>
74
+ <h3 class="text-xl font-semibold mb-3">Career Services</h3>
75
+ <p class="text-gray-600">Get career coaching, resume reviews, and interview prep to land your dream job.</p>
76
+ </div>
77
+ </div>
78
+ </div>
79
+ </section>
80
+
81
+ <!-- Courses Section -->
82
+ <section id="courses" class="py-20 bg-gray-50">
83
+ <div class="container mx-auto px-6">
84
+ <h2 class="text-3xl font-bold text-center mb-16">Our Popular Courses</h2>
85
+ <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
86
+ <custom-course-card
87
+ title="Full Stack Development"
88
+ duration="12 weeks"
89
+ level="Intermediate"
90
+ image="http://static.photos/technology/640x360/1"
91
+ price="$999">
92
+ Master both frontend and backend development with modern technologies like React, Node.js, and MongoDB.
93
+ </custom-course-card>
94
+ <custom-course-card
95
+ title="Data
96
+ <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
97
+ </body>
98
+ </html>