Skip to content

Commit

Permalink
Changes footer source button to deploy button
Browse files Browse the repository at this point in the history
  • Loading branch information
manovotny committed Aug 5, 2023
1 parent a11b6ad commit 2f9aee6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 19 deletions.
13 changes: 0 additions & 13 deletions components/icons/github.tsx

This file was deleted.

12 changes: 6 additions & 6 deletions components/layout/footer.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import Link from 'next/link';

import GitHubIcon from 'components/icons/github';
import FooterMenu from 'components/layout/footer-menu';
import LogoSquare from 'components/logo-square';
import { getMenu } from 'lib/shopify';
Expand Down Expand Up @@ -40,12 +39,13 @@ export default async function Footer() {
</Suspense>
<div className="md:ml-auto">
<a
className="flex items-center gap-2 text-lg hover:text-black dark:hover:text-neutral-300 md:text-sm"
aria-label="Github Repository"
href="https://github.com/vercel/commerce"
className="flex h-8 flex-none items-center justify-center rounded-md border border-neutral-200 bg-white text-xs text-black dark:border-neutral-700 dark:bg-black dark:text-white"
aria-label="Deploy on Vercel"
href="https://vercel.com/templates/next.js/nextjs-commerce"
>
<GitHubIcon className="h-6" />
<p>Source</p>
<span className="px-3"></span>
<hr className="h-full border-r border-neutral-200 dark:border-neutral-700" />
<span className="px-3">Deploy</span>
</a>
</div>
</div>
Expand Down

0 comments on commit 2f9aee6

Please sign in to comment.