Skip to content

Commit

Permalink
fix: add social links
Browse files Browse the repository at this point in the history
  • Loading branch information
Azanniel committed Apr 25, 2024
1 parent 00f5d7b commit f1d3cf3
Showing 1 changed file with 22 additions and 4 deletions.
26 changes: 22 additions & 4 deletions src/components/footer.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { Facebook, Instagram, Linkedin, Twitter } from 'lucide-react'
import Image from 'next/image'
import Link from 'next/link'

import brandLight from '@/assets/brand-light.svg'

Expand All @@ -23,10 +24,27 @@ export function Footer() {
</p>

<div className="flex gap-8">
<Facebook className="size-8 text-white" />
<Instagram className="size-8 text-white" />
<Twitter className="size-8 text-white" />
<Linkedin className="size-8 text-white" />
<Link href="https://www.facebook.com/pynorte" target="_blank">
<Facebook className="size-8 text-white" />
</Link>

<Link
href="https://www.instagram.com/pynorteoficial/"
target="_blank"
>
<Instagram className="size-8 text-white" />
</Link>

<Link href="http://twitter.com/pynorte" target="_blank">
<Twitter className="size-8 text-white" />
</Link>

<Link
href="http://www.linkedin.com/company/pynorte/"
target="_blank"
>
<Linkedin className="size-8 text-white" />
</Link>
</div>
</div>

Expand Down

0 comments on commit f1d3cf3

Please sign in to comment.