Skip to content

Commit a292da7

Browse files
committed
changed the photos to squares and justified blue buttons
1 parent 668ca9a commit a292da7

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/pages/Home/home.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export default function Home() {
7878
style={{ backgroundColor: '#3CBCD1' }}
7979
onMouseEnter={e => e.currentTarget.style.backgroundColor = '#2fa8bc'}
8080
onMouseLeave={e => e.currentTarget.style.backgroundColor = '#3CBCD1'}
81-
className="flex items-center gap-2 text-white text-sm font-semibold px-5 py-2 w-[140px]"
81+
className="flex items-center justify-center gap-2 text-white text-sm font-semibold px-5 py-2 w-[140px]"
8282
>
8383
OUR TEAM <span></span>
8484
</button>
@@ -123,7 +123,7 @@ export default function Home() {
123123
style={{ backgroundColor: '#3CBCD1' }}
124124
onMouseEnter={e => e.currentTarget.style.backgroundColor = '#2fa8bc'}
125125
onMouseLeave={e => e.currentTarget.style.backgroundColor = '#3CBCD1'}
126-
className="flex items-center gap-2 text-white text-sm font-semibold px-5 py-2 w-[140px]"
126+
className="flex items-center justify-center gap-2 text-white text-sm font-semibold px-5 py-2 w-[140px]"
127127
>
128128
JOIN US <span></span>
129129
</button>
@@ -154,7 +154,7 @@ export default function Home() {
154154
{ img: projectsImgSrc, label: "PROJECTS", to: "/projects" },
155155
].map(({ img, label, to }) => (
156156
<Link to={to} key={label} className="flex flex-col items-center group">
157-
<div className="relative w-full overflow-hidden rounded shadow">
157+
<div className="relative w-full overflow-hidden shadow">
158158
<img
159159
src={img}
160160
alt={label}

0 commit comments

Comments
 (0)