Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions public/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions src/app/head.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
export default function Head() {
return (
<>
<link rel="icon" href="/favicon.svg" />
<link rel="icon" href="/favicon.svg" sizes="any" />
<link rel="apple-touch-icon" href="/favicon.svg" />
Comment thread
coderabbitai[bot] marked this conversation as resolved.
<meta name="theme-color" content="#0ea5a1" />
</>
)
}
Comment thread
coderabbitai[bot] marked this conversation as resolved.
9 changes: 7 additions & 2 deletions src/sections/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,13 @@ export const Footer = () => {
<a href="#" className="text-white/70 hover:text-white text-xs sm:text-sm transition">
Blog
</a>
<a href="#" className="text-white/70 hover:text-white text-xs sm:text-sm transition">
Github
<a
href="https://github.com/DjedAlliance/StablePay-LandingPage"
target="_blank"
rel="noreferrer"
className="text-white/70 hover:text-white text-xs sm:text-sm transition"
>
GitHub
</a>
Comment thread
coderabbitai[bot] marked this conversation as resolved.
</nav>
<div className="flex gap-4 sm:gap-5 justify-center w-full sm:w-auto lg:flex-1 lg:justify-end">
Expand Down