Skip to content

Commit 9b58b4d

Browse files
author
makors
committed
fix paths
1 parent e37699d commit 9b58b4d

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

src/App.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@ const officers = [
66
{
77
name: 'Eric Guo',
88
role: 'Team Lead',
9-
imageUrl: '/officers/eric.jpg',
9+
imageUrl: 'officers/eric.jpg',
1010
githubUrl: 'https://github.com/BaconErie',
1111
},
1212
{
1313
name: 'Aarush Chaurasis',
1414
role: 'Frontend Lead',
15-
imageUrl: '/officers/aarush.jpg',
15+
imageUrl: 'officers/aarush.jpg',
1616
githubUrl: 'https://github.com/aarushtools',
1717
},
1818
{
1919
name: 'Bryce Conrad',
2020
role: 'Backend Lead',
21-
imageUrl: '/officers/bryce.jpg',
21+
imageUrl: 'officers/bryce.jpg',
2222
githubUrl: 'https://github.com/' + 'makors',
2323
},
2424
{
@@ -30,7 +30,7 @@ const officers = [
3030
{
3131
name: 'Hridhaan Banerjee',
3232
role: 'Treasurer and Event Coordinator',
33-
imageUrl: '/officers/hridhaan.jpg',
33+
imageUrl: 'officers/hridhaan.jpg',
3434
githubUrl: 'https://github.com/HridhaanB',
3535
},
3636
{
@@ -47,7 +47,7 @@ function App() {
4747
<header className="z-50 bg-white/5 backdrop-blur-xl border-b border-white/10 shadow-lg">
4848
<div className="max-w-screen-xl mx-auto flex items-center justify-between px-6 py-4">
4949
<div className="flex items-center">
50-
<img src="/logo.svg" alt="logo" className="h-12 w-auto transition-transform hover:scale-105" />
50+
<img src="logo.svg" alt="logo" className="h-12 w-auto transition-transform hover:scale-105" />
5151
<h1 className="text-2xl font-bold pl-2">TJHSST Dev Club</h1>
5252
</div>
5353
<nav className="hidden md:flex items-center space-x-8">
@@ -280,7 +280,7 @@ function App() {
280280
<div className="xl:grid xl:grid-cols-3 xl:gap-8">
281281
<div className="space-y-4">
282282
<div className="flex items-center">
283-
<img src="/logo.svg" alt="TJHSST Dev Club" className="h-10 w-auto" />
283+
<img src="logo.svg" alt="TJHSST Dev Club" className="h-10 w-auto" />
284284
<span className="ml-3 text-xl font-semibold text-white">TJHSST Dev Club</span>
285285
</div>
286286
<p className="text-sm text-gray-400">

0 commit comments

Comments
 (0)