Skip to content

Commit e936724

Browse files
committed
UI update built w/ shadcn & v0
1 parent 577d3c3 commit e936724

27 files changed

+2966
-565
lines changed

codecrusaders/.prettierrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"plugins": ["prettier-plugin-tailwindcss"]
3+
}

codecrusaders/app/about/page.tsx

Lines changed: 58 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,62 @@
1+
import {
2+
Card,
3+
CardContent,
4+
CardDescription,
5+
CardHeader,
6+
CardTitle,
7+
} from "@/components/ui/card"
8+
19
export default function About() {
210
return (
3-
<section id="about">
4-
<h2>Project Synopsis</h2>
5-
<p>
6-
FiTR is an innovative web application designed to streamline the job
7-
matching process by connecting job seekers with employers based
8-
primarily on location and key skills. Modeled after a “dating app”
9-
format, users swipe left or right on job listings to indicate whether
10-
they possess the necessary skills for a given position. When a match
11-
occurs between a job seeker and an employer, a brief 5-10 minute
12-
interview is scheduled, allowing both parties to assess if they wish to
13-
continue the hiring process. Beyond facilitating quick connections, FiTR
14-
provides valuable insights for employers, educators, and job seekers.
15-
Employers can compare skills to other job postings, educators can
16-
identify in-demand skills, and job seekers can evaluate how their skills
17-
measure up against others in the industry. The platform highlights the
18-
skills users possess while identifying any gaps in their expertise. For
19-
job seekers seeking to enhance their qualifications, FiTR offers
20-
educational resources to acquire the necessary skills, paving the way
21-
for improved employability. Overall, FiTR is a comprehensive,
22-
professional career platform that simplifies the job search process for
23-
job seekers, employers, and educators alike. It empowers individuals to
24-
understand the skills they need to secure employment while fostering
25-
growth opportunities for career advancement.
26-
</p>
27-
</section>
11+
<div className="space-y-6">
12+
<div className="flex flex-col gap-2">
13+
<h1 className="text-3xl font-bold tracking-tight">Project Synopsis</h1>
14+
<p className="text-muted-foreground">
15+
Learn about the FiTR application and its purpose
16+
</p>
17+
</div>
18+
19+
<Card>
20+
<CardHeader>
21+
<CardTitle>FiTR: Connecting Job Seekers and Employers</CardTitle>
22+
<CardDescription>An innovative job matching platform</CardDescription>
23+
</CardHeader>
24+
<CardContent className="space-y-4">
25+
<p className="leading-7">
26+
FiTR is an innovative web application designed to streamline the job
27+
matching process by connecting job seekers with employers based
28+
primarily on location and key skills. Modeled after a "dating app"
29+
format, users swipe left or right on job listings to indicate
30+
whether they possess the necessary skills for a given position.
31+
</p>
32+
33+
<p className="leading-7">
34+
When a match occurs between a job seeker and an employer, a brief
35+
5-10 minute interview is scheduled, allowing both parties to assess
36+
if they wish to continue the hiring process. Beyond facilitating
37+
quick connections, FiTR provides valuable insights for employers,
38+
educators, and job seekers.
39+
</p>
40+
41+
<p className="leading-7">
42+
Employers can compare skills to other job postings, educators can
43+
identify in-demand skills, and job seekers can evaluate how their
44+
skills measure up against others in the industry. The platform
45+
highlights the skills users possess while identifying any gaps in
46+
their expertise.
47+
</p>
48+
49+
<p className="leading-7">
50+
For job seekers seeking to enhance their qualifications, FiTR offers
51+
educational resources to acquire the necessary skills, paving the
52+
way for improved employability. Overall, FiTR is a comprehensive,
53+
professional career platform that simplifies the job search process
54+
for job seekers, employers, and educators alike. It empowers
55+
individuals to understand the skills they need to secure employment
56+
while fostering growth opportunities for career advancement.
57+
</p>
58+
</CardContent>
59+
</Card>
60+
</div>
2861
)
2962
}

codecrusaders/app/favicon.ico

-20 KB
Binary file not shown.

0 commit comments

Comments
 (0)