Skip to content

Commit

Permalink
Merge pull request #290 from Marukome0743/pr290
Browse files Browse the repository at this point in the history
✨feat: add github mark to footer
  • Loading branch information
Marukome0743 authored May 7, 2024
2 parents 2f3c37b + 8ab662d commit 6165a97
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
16 changes: 14 additions & 2 deletions app/components/footer.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,21 @@
export function Footer() {
import Image from 'next/image'
import Link from 'next/link'
import type React from 'react'

export function Footer(): React.JSX.Element {
return (
<footer className="footer footer-center bg-base-300 p-4 text-base-content">
<footer className="footer flex flex-row items-center bg-base-300 justify-center p-4 text-base-content">
<aside>
<p>Copyright © Open Up Group Inc. All rights reserved.</p>
</aside>
<nav>
<Link
href="https://github.com/OpenUp-LabTakizawa/homepage"
target="_blank"
>
<Image src="/github-mark.svg" alt="GitHub" width={24} height={24} />
</Link>
</nav>
</footer>
)
}
1 change: 1 addition & 0 deletions public/github-mark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 6165a97

Please sign in to comment.