diff --git a/README.md b/README.md index 94f8d57..60b4332 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,7 @@ [![Cypress Tests](https://img.shields.io/endpoint?url=https://dashboard.cypress.io/badge/simple/qgjdyd&style=flat&logo=cypress)](https://dashboard.cypress.io/projects/qgjdyd/runs) [![License](https://img.shields.io/github/license/TheDavidDelta/lingva-translate)](./LICENSE) [![Awesome Humane Tech](https://raw.githubusercontent.com/humanetech-community/awesome-humane-tech/main/humane-tech-badge.svg?sanitize=true)](https://github.com/humanetech-community/awesome-humane-tech) +[Powered by Vercel](https://vercel.com?utm_source=lingva-team&utm_campaign=oss) Alternative front-end for Google Translate, serving as a Free and Open Source translator with over a hundred languages available @@ -66,7 +67,7 @@ docker run -p 3000:3000 -e site_domain=lingva.ml -e dark_theme=false thedaviddel Another easy way is to use the NextJS creators' own platform, [Vercel](https://vercel.com/), where you can deploy it for free with the following button. -[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/git/external?repository-url=https%3A%2F%2Fgithub.com%2FTheDavidDelta%2Flingva-translate%2Ftree%2Fmain&env=NEXT_PUBLIC_SITE_DOMAIN&envDescription=Your%20domain) +[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/git/external?repository-url=https%3A%2F%2Fgithub.com%2FTheDavidDelta%2Flingva-translate%2Ftree%2Fmain&env=NEXT_PUBLIC_SITE_DOMAIN&envDescription=Your%20domain&utm_source=lingva-team&utm_campaign=oss) ## Instances diff --git a/components/Footer.tsx b/components/Footer.tsx index f4d4b2c..b03f1fe 100644 --- a/components/Footer.tsx +++ b/components/Footer.tsx @@ -1,22 +1,34 @@ import { FC } from "react"; -import { Center, Text } from "@chakra-ui/react"; +import { Stack, Text, Link } from "@chakra-ui/react"; type Props = { [key: string]: any }; const Footer: FC = (props) => ( -
- © 2021 TheDavidDelta - · - Licensed under AGPLv3 -
+ + © 2021 TheDavidDelta & contributors + + · + + Licensed under AGPLv3 + + · + + ▲ Powered by Vercel + + ); export default Footer;