Skip to content

Commit ac6f809

Browse files
committed
I included the GitHub link.
1 parent 8fb73e9 commit ac6f809

File tree

5 files changed

+33
-1
lines changed

5 files changed

+33
-1
lines changed

app/globals.css

+12
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,18 @@ body {
5757
gap: 1rem;
5858
}
5959

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+
6072
@keyframes text-anime {
6173
25% {
6274
transform: scale(0.8, 1.3);

app/favicon.ico app/icon.ico

File renamed without changes.

app/layout.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import type { Metadata } from "next";
22
import { Nabla } from "next/font/google";
33
import "./globals.css";
4-
import Favicon from '/public/images/favicon.ico';
54

65
const nabla = Nabla({ subsets: ["latin"] });
76

app/page.tsx

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import React, { useEffect, useState } from 'react';
44
import SingleCard from '@/Components/SingleCard';
55
import PropagateLoader from "react-spinners/PropagateLoader";
6+
import Image from 'next/image';
67

78
interface Card {
89
src: string;
@@ -137,6 +138,13 @@ export default function Home() {
137138
</article>
138139
</section>
139140
}
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>
140148
</main>
141149
);
142150
}

public/images/github.svg

+13
Loading

0 commit comments

Comments
 (0)