Skip to content

Commit 25e9e9c

Browse files
committed
fix: modified section heading sizes to accomodate for Starlight font
1 parent 559ce30 commit 25e9e9c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/components/About.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { ArrowUpRight } from "lucide-react"
33
const About = () => {
44
return (
55
<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>
77
<p className="text-gray-700 dark:text-gray-300">
88
I am a junior at the University of Waterloo, pursuing a major in Computational Mathematics.
99
With a passion for technology and innovation, I am constantly exploring new

src/components/Experiences.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export function Experiences({ arr }: ExperiencesProps) {
1111
const [experiences, setExperiences] = useState(arr)
1212
return (
1313
<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>
1515
{experiences && experiences.length > 0 ? (
1616
<div className="relative space-y-6">
1717
<div

src/components/Header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const Header = () => {
1919
</div>
2020
<div className="flex-grow text-center md:text-left">
2121
<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>
2323
<ThemeSwitch />
2424
</div>
2525
<div className="flex justify-center md:justify-start mt-4 space-x-4">

src/components/Projects.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export function Projects({ arr }: ProjectProps) {
99
const [projects, setProjects] = useState(arr)
1010
return (
1111
<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>
1313
{projects && projects.length > 0 ? (
1414
<div className="space-y-4">
1515
{projects.map((project, index) => (

0 commit comments

Comments
 (0)