Skip to content

Commit

Permalink
Create footer.tsx
Browse files Browse the repository at this point in the history
Signed-off-by: gitworkflows <118260833+gitworkflows@users.noreply.github.com>
  • Loading branch information
gitworkflows authored Apr 11, 2024
1 parent d8ac9bd commit 6946a46
Showing 1 changed file with 61 additions and 0 deletions.
61 changes: 61 additions & 0 deletions solutions/blog/app/components/footer.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
function ArrowIcon() {
return (
<svg
width="12"
height="12"
viewBox="0 0 12 12"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M2.07102 11.3494L0.963068 10.2415L9.2017 1.98864H2.83807L2.85227 0.454545H11.8438V9.46023H10.2955L10.3097 3.09659L2.07102 11.3494Z"
fill="currentColor"
/>
</svg>
)
}

export default function Footer() {
return (
<footer className="mb-16">
<ul className="font-sm mt-8 flex flex-col space-x-0 space-y-2 text-neutral-600 md:flex-row md:space-x-4 md:space-y-0 dark:text-neutral-300">
<li>
<a
className="flex items-center transition-all hover:text-neutral-800 dark:hover:text-neutral-100"
rel="noopener noreferrer"
target="_blank"
href="/rss"
>
<ArrowIcon />
<p className="ml-2 h-7">rss</p>
</a>
</li>
<li>
<a
className="flex items-center transition-all hover:text-neutral-800 dark:hover:text-neutral-100"
rel="noopener noreferrer"
target="_blank"
href="https://vercel.com/templates/next.js/portfolio-starter-kit"
>
<ArrowIcon />
<p className="ml-2 h-7">github</p>
</a>
</li>
<li>
<a
className="flex items-center transition-all hover:text-neutral-800 dark:hover:text-neutral-100"
rel="noopener noreferrer"
target="_blank"
href="https://vercel.com/templates/next.js/portfolio-starter-kit"
>
<ArrowIcon />
<p className="ml-2 h-7">view source</p>
</a>
</li>
</ul>
<p className="mt-8 text-neutral-600 dark:text-neutral-300">
© {new Date().getFullYear()} MIT Licensed
</p>
</footer>
)
}

1 comment on commit 6946a46

@vercel
Copy link

@vercel vercel bot commented on 6946a46 Apr 11, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

hand-pickr – ./

hand-pickr-git-main-devsec.vercel.app
hand-pickr.vercel.app
hand-pickr-devsec.vercel.app

Please sign in to comment.