Skip to content

Commit

Permalink
added footer
Browse files Browse the repository at this point in the history
  • Loading branch information
karimhossenbux committed Mar 23, 2021
1 parent 77a211a commit 74b7286
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
15 changes: 15 additions & 0 deletions components/Footer.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import Link from 'next/link'

const Title = (props) => {
return (
<footer className="text-center text-xs">
<Link href="https://github.com/karimhossenbux/resume">
<a className="text-gray-400 dark:text-gray-700">
<small>source code: github.com/karimhossenbux/resume</small>
</a>
</Link>
</footer>
)
}

export default Title
5 changes: 4 additions & 1 deletion pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import Skills from '../components/Skills'
import Educations from '../components/Educations'
import Languages from '../components/Languages'
import Interests from '../components/Interests'
import Footer from '../components/Footer'
import { getResume } from '../utils/resume'

export default function Home() {
Expand All @@ -21,14 +22,16 @@ export default function Home() {
<link rel="icon" href="/favicon.ico" />
</Head>

<main>
<main className="mb-12">
<About info={resume.basics} />
<Skills items={resume.skills} />
<Work items={resume.work} />
<Educations items={resume.education} />
<Languages items={resume.languages} />
<Interests items={resume.interests} />
</main>

<Footer />
</div>
</div>
)
Expand Down

0 comments on commit 74b7286

Please sign in to comment.