Skip to content

Commit 73cd02a

Browse files
authored
Merge branch 'main' into update/13965
2 parents e0d3b89 + 170f3b7 commit 73cd02a

File tree

6 files changed

+41
-7
lines changed

6 files changed

+41
-7
lines changed

app/[lang]/(hyperjump)/components/footer.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ export default function Footer({ lang }: FooterProps) {
4949
href={url}
5050
target="_blank"
5151
rel="noopener noreferrer"
52-
className="hover:bg-hyperjump-blue flex h-10 w-10 items-center justify-center rounded-full border border-[#2D364A] text-white transition"
53-
aria-label={platform}>
54-
<i className={icon} aria-hidden="true"></i>
52+
aria-label={platform}
53+
className="hover:bg-hyperjump-blue flex h-10 w-10 items-center justify-center rounded-full border border-[#2D364A] text-white transition">
54+
<Image src={icon} alt={platform} width={20} height={20} />
5555
</a>
5656
))}
5757
</div>

data.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,22 +32,22 @@
3232
{
3333
"platform": "LinkedIn",
3434
"url": "https://www.linkedin.com/company/hyperjump",
35-
"icon": "fa fa-linkedin"
35+
"icon": "/images/footer/linkedin.svg"
3636
},
3737
{
3838
"platform": "GitHub",
3939
"url": "https://github.com/hyperjumptech",
40-
"icon": "fa fa-github"
40+
"icon": "/images/footer/github.svg"
4141
},
4242
{
4343
"platform": "Medium",
4444
"url": "https://medium.com/hyperjump-tech",
45-
"icon": "fab fa-medium-m"
45+
"icon": "/images/footer/medium.svg"
4646
},
4747
{
4848
"platform": "Substack",
4949
"url": "https://hyperjump.substack.com",
50-
"icon": "fa fa-newspaper"
50+
"icon": "/images/footer/substack.svg"
5151
}
5252
],
5353
"title": "Hyperjump Technology",

public/images/footer/github.svg

Lines changed: 10 additions & 0 deletions
Loading

public/images/footer/linkedin.svg

Lines changed: 10 additions & 0 deletions
Loading

public/images/footer/medium.svg

Lines changed: 3 additions & 0 deletions
Loading

public/images/footer/substack.svg

Lines changed: 11 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)