-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
064092f
commit 29ad933
Showing
2 changed files
with
33 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import { siteUrls } from "@/config/urls"; | ||
|
||
export function SiteFooter() { | ||
return ( | ||
<footer className="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="text-balance text-center text-sm leading-loose text-muted-foreground md:text-left"> | ||
Built by{" "} | ||
<a | ||
href={siteUrls.twitter} | ||
target="_blank" | ||
rel="noreferrer" | ||
className="font-medium underline underline-offset-4" | ||
> | ||
alifarooq | ||
</a> | ||
. The source code is available on{" "} | ||
<a | ||
href={siteUrls.github} | ||
target="_blank" | ||
rel="noreferrer" | ||
className="font-medium 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