File tree Expand file tree Collapse file tree 3 files changed +12
-7
lines changed Expand file tree Collapse file tree 3 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ import Contact from "../contact/Contact";
4
4
import Loading from "../loading/Loading" ;
5
5
6
6
const renderLoader = ( ) => < Loading /> ;
7
- const GithubProfileCard = lazy ( ( ) =>
8
- import ( "../../components/githubProfileCard/GithubProfileCard" )
7
+ const GithubProfileCard = lazy (
8
+ ( ) => import ( "../../components/githubProfileCard/GithubProfileCard" )
9
9
) ;
10
10
export default function Profile ( ) {
11
11
const [ prof , setrepo ] = useState ( [ ] ) ;
Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ import {openSource, socialMediaLinks} from "../../portfolio";
5
5
import StyleContext from "../../contexts/StyleContext" ;
6
6
import Loading from "../../containers/loading/Loading" ;
7
7
export default function Projects ( ) {
8
- const GithubRepoCard = lazy ( ( ) =>
9
- import ( "../../components/githubRepoCard/GithubRepoCard" )
8
+ const GithubRepoCard = lazy (
9
+ ( ) => import ( "../../components/githubRepoCard/GithubRepoCard" )
10
10
) ;
11
11
const FailedLoading = ( ) => null ;
12
12
const renderLoader = ( ) => < Loading /> ;
Original file line number Diff line number Diff line change 2
2
font-family : "Agustina Regular" ;
3
3
font-style : normal;
4
4
font-weight : normal;
5
- src : local ("Agustina Regular" ),
5
+ src :
6
+ local ("Agustina Regular" ),
6
7
url ("./assets/fonts/Agustina.woff" ) format ("woff" );
7
8
font-display : swap;
8
9
}
9
10
@font-face {
10
11
font-family : "Montserrat" ;
11
- src : local ("Montserrat" ),
12
+ src :
13
+ local ("Montserrat" ),
12
14
url ("./assets/fonts/Montserrat-Regular.ttf" ) format ("woff" );
13
15
font-display : swap;
14
16
}
@@ -22,7 +24,10 @@ body {
22
24
}
23
25
body {
24
26
margin : 0 ;
25
- font : 19px / 23px Montserrat, "Montserrat" , sans-serif;
27
+ font :
28
+ 19px / 23px Montserrat,
29
+ "Montserrat" ,
30
+ sans-serif;
26
31
-webkit-font-smoothing : antialiased;
27
32
-moz-osx-font-smoothing : grayscale;
28
33
}
You can’t perform that action at this time.
0 commit comments