-
Notifications
You must be signed in to change notification settings - Fork 1
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 #21 from ivalshamkya/feat/footer
feat(footer): adding footer to landing page
- Loading branch information
Showing
6 changed files
with
43 additions
and
14 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
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
export default function Footer() { | ||
return ( | ||
<footer className="bg-[#121212] w-full py-6 md:px-8 md:py-0"> | ||
<div className="container flex flex-col items-center justify-between gap-4 md:h-24 md:flex-row"> | ||
<p className="font-thin text-white text-balance text-center text-sm leading-loose md:text-left"> | ||
Built by{" "} | ||
<a | ||
href="https://github.com/ivalshamkya" | ||
target="_blank" | ||
rel="noreferrer" | ||
className="underline underline-offset-4" | ||
> | ||
Ival Shamkya | ||
</a> | ||
. The source code is available on{" "} | ||
<a | ||
href="https://github.com/ivalshamkya/neobruu" | ||
target="_blank" | ||
rel="noreferrer" | ||
className="underline underline-offset-4" | ||
> | ||
GitHub | ||
</a> | ||
. | ||
</p> | ||
</div> | ||
</footer> | ||
); | ||
} |
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
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
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
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