File tree 5 files changed +33
-1
lines changed
5 files changed +33
-1
lines changed Original file line number Diff line number Diff line change @@ -57,6 +57,18 @@ body {
57
57
gap : 1rem ;
58
58
}
59
59
60
+ /* Github */
61
+ .github {
62
+ position : absolute;
63
+ bottom : 20px ;
64
+ right : 20px ;
65
+ }
66
+
67
+ .github img {
68
+ width : 70px ;
69
+ height : 70px ;
70
+ }
71
+
60
72
@keyframes text-anime {
61
73
25% {
62
74
transform : scale (0.8 , 1.3 );
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
import type { Metadata } from "next" ;
2
2
import { Nabla } from "next/font/google" ;
3
3
import "./globals.css" ;
4
- import Favicon from '/public/images/favicon.ico' ;
5
4
6
5
const nabla = Nabla ( { subsets : [ "latin" ] } ) ;
7
6
Original file line number Diff line number Diff line change 3
3
import React , { useEffect , useState } from 'react' ;
4
4
import SingleCard from '@/Components/SingleCard' ;
5
5
import PropagateLoader from "react-spinners/PropagateLoader" ;
6
+ import Image from 'next/image' ;
6
7
7
8
interface Card {
8
9
src : string ;
@@ -137,6 +138,13 @@ export default function Home() {
137
138
</ article >
138
139
</ section >
139
140
}
141
+ < section className = "github" >
142
+ < a href = "https://github.com/L3on06" target = "_blank" >
143
+ < figure >
144
+ < Image src = "/images/github.svg" alt = "Github" width = { 200 } height = { 200 } />
145
+ </ figure >
146
+ </ a >
147
+ </ section >
140
148
</ main >
141
149
) ;
142
150
}
You can’t perform that action at this time.
0 commit comments