Skip to content

Commit bd04a49

Browse files
committed
Added Education Section
1 parent 892ef7d commit bd04a49

File tree

3 files changed

+82
-1
lines changed

3 files changed

+82
-1
lines changed

app/page.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import Aboutme from "@/components/Aboutme";
2+
import Education from "@/components/Education";
23
import Footer from "@/components/Footer";
34
import Navbar from "@/components/Navbar";
45
import Projects from "@/components/Projects";
@@ -13,6 +14,7 @@ export default function Home() {
1314
<Aboutme />
1415
<WorkExp />
1516
<Projects />
17+
<Education />
1618
<Footer />
1719
</>
1820
);

components/Education.tsx

+79
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
import React from "react";
2+
3+
const Education = () => {
4+
return (
5+
<section id="Education">
6+
<div className="bg-[#c4fdff] text-black py-8 lg:px-20 border-4 border-black md:mx-10 rounded-3xl">
7+
<div className="container mx-auto flex flex-col items-start md:flex-row my-12 md:my-24">
8+
<div className="flex flex-col w-full sticky md:top-36 lg:w-1/3 mt-2 md:mt-12 px-8">
9+
<h1
10+
className="text-4xl md:text-5xl font-bold text-black heading_font"
11+
data-svelte-h="svelte-3x10mm"
12+
>
13+
Education
14+
</h1>{" "}
15+
</div>{" "}
16+
<div className="ml-0 md:ml-12 lg:w-2/3 sticky">
17+
<div className="container mx-auto w-full h-full">
18+
<div className="relative wrap overflow-hidden p-10 h-full">
19+
<div className="border-2-2 absolute h-full border-green-50 border-8 opacity-0"></div>{" "}
20+
<div
21+
className="mb-8 flex justify-between flex-row-reverse items-center w-full left-timeline aos-init aos-animate"
22+
data-aos="fade-down"
23+
data-svelte-h="svelte-1oza2m"
24+
data-aos-easing="linear"
25+
data-aos-duration="1500"
26+
>
27+
<div className="order-1 w-auto"></div>{" "}
28+
<div className="order-1 w-5/6 px-4 py-12 border-4 border-black shadow-[6px_6px_0_0_#000] transition hover:shadow-none bg-white rounded-3xl">
29+
<span className="mb-3 text-base text-red-900">
30+
Sept 2023 - Present
31+
</span>{" "}
32+
<h4 className="mb-1 text-2xl md:text-5xl text-red-900 heading_font font-bold">
33+
Northeastern University
34+
</h4>{" "}
35+
<h5 className="mb-4 font-semibold text-xs md:text-lg">
36+
Master of Science in Computer Science
37+
</h5>{" "}
38+
<div className="text-sm md:text-base leading-snug tetx-900 text-opacity-100 gap-4 flex flex-col p-4">
39+
<b>GPA: 3.8</b>
40+
<ul>
41+
<li>
42+
<b>Courses: </b> Programming Design Paradigm,
43+
Algorithms, Information Retrieval, Special Topics in
44+
Data Science
45+
</li>
46+
</ul>
47+
</div>
48+
</div>
49+
</div>{" "}
50+
<div
51+
className="mb-8 flex justify-between items-center w-full right-timeline aos-init"
52+
data-aos="fade-up"
53+
data-svelte-h="svelte-1uuoo4c"
54+
data-aos-easing="linear"
55+
data-aos-duration="1500"
56+
>
57+
<div className="order-1 w-auto"></div>{" "}
58+
<div className="order-1 w-5/6 px-4 py-12 border-4 border-black shadow-[6px_6px_0_0_#000] transition hover:shadow-none bg-white rounded-3xl">
59+
<span className="mb-3 text-base text-cyan-900">
60+
May 2015 - May 2019
61+
</span>{" "}
62+
<h4 className="mb-1 text-2xl md:text-5xl text-cyan-900 heading_font font-bold">
63+
SRM Institute of Science and Technology
64+
</h4>{" "}
65+
<h5 className="mb-4 font-semibold text-xs md:text-lg">
66+
Bachelor of Technology in Computer Science and Engineering
67+
</h5>{" "}
68+
</div>
69+
</div>{" "}
70+
</div>
71+
</div>
72+
</div>
73+
</div>
74+
</div>
75+
</section>
76+
);
77+
};
78+
79+
export default Education;

components/Footer.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import React from "react";
33

44
const Footer = () => {
55
return (
6-
<footer className="footer items-center p-4 bg-neutral text-neutral-content">
6+
<footer className="footer items-center p-4 bg-neutral text-neutral-content mt-6">
77
<aside className="items-center grid-flow-col">
88
<Link
99
target="_blank"

0 commit comments

Comments
 (0)