File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import { ArrowUpRight } from "lucide-react"
3
3
const About = ( ) => {
4
4
return (
5
5
< section id = "about" className = "mb-12" >
6
- < h2 className = "text-2xl font-bold mb-4" > About</ h2 >
6
+ < h2 className = "text-2xl md:text-3xl lg:text-4xl font-section mb-4" > About</ h2 >
7
7
< p className = "text-gray-700 dark:text-gray-300" >
8
8
I am a junior at the University of Waterloo, pursuing a major in Computational Mathematics.
9
9
With a passion for technology and innovation, I am constantly exploring new
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ export function Experiences({ arr }: ExperiencesProps) {
11
11
const [ experiences , setExperiences ] = useState ( arr )
12
12
return (
13
13
< section id = "experience" className = "mb-12" >
14
- < h2 className = "text-2xl font-bold mb-4" > Experience</ h2 >
14
+ < h2 className = "text-2xl md:text-3xl lg:text-4xl font-section mb-4" > Experience</ h2 >
15
15
{ experiences && experiences . length > 0 ? (
16
16
< div className = "relative space-y-6" >
17
17
< div
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ const Header = () => {
19
19
</ div >
20
20
< div className = "flex-grow text-center md:text-left" >
21
21
< div className = "flex items-center justify-center md:justify-start" >
22
- < h1 className = "text-3xl md:text-4xl lg:text-5xl font-bold mr-4" > Himank Dave</ h1 >
22
+ < h1 className = "text-4xl md:text-5xl lg:text-6xl font-bold mr-4" > Himank Dave</ h1 >
23
23
< ThemeSwitch />
24
24
</ div >
25
25
< div className = "flex justify-center md:justify-start mt-4 space-x-4" >
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export function Projects({ arr }: ProjectProps) {
9
9
const [ projects , setProjects ] = useState ( arr )
10
10
return (
11
11
< section id = "projects" className = "mb-12" >
12
- < h2 className = "text-2xl font-bold mb-4" > Projects</ h2 >
12
+ < h2 className = "text-2xl md:text-3xl lg:text-4xl font-section font-bold mb-4" > Projects</ h2 >
13
13
{ projects && projects . length > 0 ? (
14
14
< div className = "space-y-4" >
15
15
{ projects . map ( ( project , index ) => (
You can’t perform that action at this time.
0 commit comments