Skip to content

Commit 04a4d6b

Browse files
committed
Update Font Awesome stylesheet to version 6.5.1 and remove local imports from Footer components
1 parent 6c9b1ee commit 04a4d6b

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

public/index.html

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,13 @@
2929
work correctly both with client-side routing and a non-root public URL.
3030
Learn how to configure a non-root public URL by running `npm run build`.
3131
-->
32-
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" />
32+
<link
33+
rel="stylesheet"
34+
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
35+
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
36+
crossorigin="anonymous"
37+
referrerpolicy="no-referrer"
38+
/>
3339
<title>DevDisplay - Paradise for developers</title>
3440
</head>
3541
<body>

src/Page/OpportunitiesHub/commonComponents/Footer.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import React from 'react';
2-
import '@fortawesome/fontawesome-free/css/all.min.css';
32

43
const Footer = () => {
54
return (

src/Page/ResoucesHub/commonComponents/Footer.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import React from 'react';
2-
import '@fortawesome/fontawesome-free/css/all.min.css';
32

43
const Footer = () => {
54
return (

src/components/Footer/Footer.jsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import '@fortawesome/fontawesome-free/css/all.min.css';
2-
31
export const Footer = () => {
42
return (
53
<footer className="w-full bg-gray-800 py-8 text-white">

0 commit comments

Comments
 (0)