diff --git a/README.md b/README.md index 8b784312..5389705f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # xarray landing page -![Vercel Deployment](https://img.shields.io/github/deployments/xarray-contrib/xarray.dev/Production?label=vercel&logo=vercel&style=for-the-badge) +[![Netlify Status](https://api.netlify.com/api/v1/badges/4f940719-54bd-4ff7-95e0-0088dfb3c10f/deploy-status)](https://app.netlify.com/projects/xarraydev/deploys) Landing Page for xarray project. @@ -44,8 +44,9 @@ Open [http://localhost:3000](http://localhost:3000) with your browser to see the You can start editing the page by modifying `pages/index.js`. The page auto-updates as you edit the file. - -

- -

+
+ Deploys by Netlify diff --git a/public/vercel.svg b/public/vercel.svg deleted file mode 100644 index 4cd3aeaa..00000000 --- a/public/vercel.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/src/components/footer.js b/src/components/footer.js index 5fb7f0be..b1d41bce 100644 --- a/src/components/footer.js +++ b/src/components/footer.js @@ -14,7 +14,7 @@ import { getRootURL } from '@/lib/seo-utils' import { GitSHA } from '@/components/git-sha' import { Image, Link } from '@/components/mdx' -import { VercelCallout } from '@/components/vercel' +import { NetlifyCallout } from '@/components/netlify' import { footerItems } from '@/data/footer-items' import { FaGithub, FaRss, FaTwitter, FaYoutube } from 'react-icons/fa' @@ -154,7 +154,7 @@ export const Footer = () => { - + diff --git a/src/components/netlify.js b/src/components/netlify.js new file mode 100644 index 00000000..32d91e08 --- /dev/null +++ b/src/components/netlify.js @@ -0,0 +1,13 @@ +import { Link } from '@/components/mdx' +import { Box } from '@chakra-ui/react' + +export function NetlifyCallout() { + return ( + + Deploys by Netlify + + ) +} diff --git a/src/components/vercel.js b/src/components/vercel.js deleted file mode 100644 index 89810c9f..00000000 --- a/src/components/vercel.js +++ /dev/null @@ -1,27 +0,0 @@ -import { Link } from '@/components/mdx' -import { Box } from '@chakra-ui/react' - -export function VercelCallout() { - return ( - - {' '} - - {'Powered by'}{' '} - - ▲ - {' '} - Vercel - - - ) -}