Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Adding github project link #54

Merged
merged 2 commits into from
May 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ Com o SOS Pet, as pessoas que resgatam animais de enchentes podem rapidamente en
1. Instale as dependências
1. Crie um arquivo `.env` baseando se no `.env.example`
1. Assegure se de preencher todas as variáveis ambiente.
1. Suba o baco de dados: `docker compose up -d`
1. Suba o baco de dados: `docker-compose up -d`
1. Rode as migrations: `npx prisma migrate dev`
1. Rode o projeto com o script `dev` disponível no `package.json`
2 changes: 2 additions & 0 deletions src/app/about/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ export default function About() {
transformar um momento de crise em uma oportunidade para fazer a
diferença na vida de um animal. Juntos, podemos salvar vidas e
construir um futuro mais seguro para nossos amigos de quatro patas.
Além disso, esse projeto tem o código fonte aberto e disponível para colaboração:
<a href="https://github.com/emiliosheinz/sos-pet" target="blank"> https://github.com/emiliosheinz/sos-pet</a>
</p>
</div>
</div>
Expand Down
10 changes: 9 additions & 1 deletion src/components/footer/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Image from "next/image";
import Link from "next/link";
import { FaInstagram } from "react-icons/fa";
import { FaInstagram, FaGithub } from "react-icons/fa";

export function Footer() {
return (
Expand All @@ -15,6 +15,13 @@ export function Footer() {
/>
</div>
<div className="flex flex-col items-center gap-1 text-center align-middle md:flex-row md:gap-8">
<Link
target="_blank"
href="https://github.com/emiliosheinz/sos-pet"
className="flex items-center gap-1 text-sm text-gray-500 hover:text-gray-700"
>
<FaGithub size={16} /> sos-pet
</Link>
<Link
target="_blank"
href="https://www.instagram.com/oficial_sospet/"
Expand All @@ -40,6 +47,7 @@ export function Footer() {
>
Políticas de privacidade
</Link>

</div>
</div>
</footer>
Expand Down