-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
64 lines (59 loc) · 2.11 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sage Coder - Code Resources & Roadmaps</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="logo">Sage Coder</div>
<button id="theme-toggle" class="theme-toggle">🌙</button>
</header>
<main>
<section class="hero">
<h1>Welcome to Sage Coder</h1>
<p>Your one-stop platform for coding resources, roadmaps, and community-driven learning.</p>
<button class="cta-button">Explore Resources</button>
</section>
<section class="cards-container">
<div class="card">
<a href="data/api-providers/api-providers.html">
<h2>API Providers</h2>
<p>Find the best APIs for your coding projects. Easily integrate and enhance your apps.</p>
</a>
</div>
<div class="card">
<a href="code-editors.html">
<h2>Code Editors & IDEs</h2>
<p>Explore top code editors and IDEs to streamline your development process.</p>
</a>
</div>
<div class="card">
<a href="hackathons.html">
<h2>Hackathons</h2>
<p>Join exciting hackathons and sharpen your skills while competing with fellow coders.</p>
</a>
</div>
<div class="card">
<a href="news.html">
<h2>News</h2>
<p>Stay updated with the latest news in the tech world and coding community.</p>
</a>
</div>
<div class="card">
<a href="website-templates.html">
<h2>Website Templates</h2>
<p>Discover responsive and customizable website templates to kickstart your projects.</p>
</a>
</div>
</section>
</main>
<footer>
<p>© 2024 Sage Coder. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>