forked from aditya-bhaumik/Pathsphere
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
128 lines (112 loc) · 3.53 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<link rel="icon" type="image/x-icon" href="/images/pathsphere.png">
h6{
font-size:20px !important;
}
</style>
</head>
<body>
<main>
<section class="hero">
<div class="left">
<h1>Welcome to PathSphere</h1>
<p>Your gateway to educational and professional resources</p>
<div class="search-container">
<a href="/pages/scholarships/scholarships.html" class="btn">
<i class="fa-solid fa-magnifying-glass"></i>
Find Scholarships
</a>
<a href="/pages/jobs/jobs.html" class="btn">
<i class="fa-solid fa-magnifying-glass"></i>
Find Jobs
</a>
</div>
</div>
</section>
<section class="features">
<div class="feature">
<img src="/images/sicon.png" alt="Scholarships Icon">
<h2>Scholarships</h2>
<p>Discover scholarships tailored to your needs and academic performance.</p>
<a href="/pages/scholarships/scholarships.html" class="btn">Explore</a>
</div>
<div class="feature">
<img src="/images/jicon.png" alt="Jobs Icon">
<h2>Jobs</h2>
<p>Find job opportunities for educators and professionals.</p>
<a href="/pages/jobs/jobs.html" class="btn">Browse Jobs</a>
</div>
<div class="feature">
<img src="/images/ficon.png" alt="Forum Icon">
<h2>Forum</h2>
<p>Join discussions, ask questions, and connect with others.</p>
<a href="/pages/forum/forum.html" class="btn">Join the Forum</a>
</div>
</section>
</div>
</div>
<div class="feature-item">
<i class="fas fa-briefcase"></i>
<div>
<h6>Job Portal</h6>
<p class="hidden-text">Job opportunities tailored for educators.</p>
</div>
</div>
<div class="feature-item">
<i class="fas fa-users"></i>
<div>
<h6>Community Forums</h6>
<p class="hidden-text">Share resources, advice, experiences.</p>
</div>
</div>
<div class="feature-item">
<i class="fas fa-bell"></i>
<div>
<h6 >Instant Notifications</h6>
<p class="hidden-text">Get real-time important updates.</p>
</div>
</div>
<div class="feature-item">
<i class="fas fa-bookmark"></i>
<div>
<h6 >Save & Track</h6>
<p class="hidden-text">Bookmark and monitor application progress.</p>
</div>
</div>
<div class="feature-item">
<i class="fas fa-tools"></i>
<div>
<h6>Resume Builder</h6>
<p class="hidden-text">Create a professional profile easily.</p>
</div>
</div>
</div>
</div>
</section>
</main>
<script src="/scripts/componentLoader.js"></script>
<script>
prependComponent("Navbar");
prependComponent('Cursor');
prependComponent("ScrollToTop");
appendComponent("Footer");
</script>
<script>
window.embeddedChatbotConfig = {
chatbotId: "7akUzokCgwR0gNp0m-qQF",
domain: "www.chatbase.co"
}
</script>
<script
src="https://www.chatbase.co/embed.min.js"
chatbotId="7akUzokCgwR0gNp0m-qQF"
domain="www.chatbase.co"
defer>
</script>
</body>
</html>