forked from aditya-bhaumik/Pathsphere
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
129 lines (116 loc) · 3.99 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
129
<!DOCTYPE html>
<html lang="en">
<head>
<!-- <base href="/Pathsphere/"> -->
<!-- uncomment above line if deploying to github pages -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PathSphere | Home</title>
<!-- Added a favicon -->
<link rel="icon" type="image/x-icon" href="/images/pathsphere.png">
</head>
<!-- Add an ID to the body tag or a specific class to the blog section -->
<body> <!-- or class="blog-page" -->
<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>
</section>
<section class="features">
<div class="feature">
<img src="/images/sicon.png" alt="">
<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="">
<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="">
<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>
<section id="features-section" class="section"></section>
<div class="container">
<div class="row">
<div class="text-content">
<h3>Key Features of PathSphere</h3>
<p>Connecting students to scholarships and educators to job opportunities with powerful tools and community
support.</p>
<div class="feature-list">
<div class="feature-item">
<i class="fas fa-search"></i>
<div>
<h6>Scholarship Search</h6>
<p>Find scholarships easily, quickly.</p>
</div>
</div>
<div class="feature-item">
<i class="fas fa-briefcase"></i>
<div>
<h6>Job Portal</h6>
<p>Job opportunities tailored for educators.</p>
</div>
</div>
<div class="feature-item">
<i class="fas fa-users"></i>
<div>
<h6>Community Forums</h6>
<p>Share resources, advice, experiences.</p>
</div>
</div>
<div class="feature-item">
<i class="fas fa-bell"></i>
<div>
<h6>Instant Notifications</h6>
<p>Get real-time important updates.</p>
</div>
</div>
<div class="feature-item">
<i class="fas fa-bookmark"></i>
<div>
<h6>Save & Track</h6>
<p>Bookmark and monitor application progress.</p>
</div>
</div>
<div class="feature-item">
<i class="fas fa-tools"></i>
<div>
<h6>Resume Builder</h6>
<p>Create a professional profile easily.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</br></br></br>
</main>
<script src="/scripts/componentLoader.js">
</script>
<script>
prependComponent("Navbar");
prependComponent('Cursor');
prependComponent("ScrollToTop");
appendComponent("Footer");
</script>
</body>
</html>