-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #290 from Marukome0743/pr290
✨feat: add github mark to footer
- Loading branch information
Showing
2 changed files
with
15 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
) | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.