Skip to content

Commit c3f3936

Browse files
authored
Changes footer source button to deploy button (#1151)
1 parent a11b6ad commit c3f3936

File tree

2 files changed

+6
-19
lines changed

2 files changed

+6
-19
lines changed

components/icons/github.tsx

Lines changed: 0 additions & 13 deletions
This file was deleted.

components/layout/footer.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import Link from 'next/link';
22

3-
import GitHubIcon from 'components/icons/github';
43
import FooterMenu from 'components/layout/footer-menu';
54
import LogoSquare from 'components/logo-square';
65
import { getMenu } from 'lib/shopify';
@@ -40,12 +39,13 @@ export default async function Footer() {
4039
</Suspense>
4140
<div className="md:ml-auto">
4241
<a
43-
className="flex items-center gap-2 text-lg hover:text-black dark:hover:text-neutral-300 md:text-sm"
44-
aria-label="Github Repository"
45-
href="https://github.com/vercel/commerce"
42+
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"
43+
aria-label="Deploy on Vercel"
44+
href="https://vercel.com/templates/next.js/nextjs-commerce"
4645
>
47-
<GitHubIcon className="h-6" />
48-
<p>Source</p>
46+
<span className="px-3"></span>
47+
<hr className="h-full border-r border-neutral-200 dark:border-neutral-700" />
48+
<span className="px-3">Deploy</span>
4949
</a>
5050
</div>
5151
</div>

0 commit comments

Comments
 (0)