File size: 1,357 Bytes
59b210a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import { FaDiscord, FaWhatsapp, FaInstagram, FaTiktok, FaGithub } from 'react-icons/fa'

export default function Footer() {
  return (
    <footer className="mt-3">
      <div className="flex flex-col sm:flex-row justify-center items-center text-center sm:text-left">
        <p className="text-sm text-muted-foreground mb-2 sm:mb-0">
          Coded by <a href="https://karma.yt/?pollinations">Karma.yt</a> with <a href="https://pollinations.ai/#karma">Pollinations.ai</a>
        </p>
      </div>
      <div className="flex justify-center space-x-4 mt-2">
        <a href="https://discord.gg/BZWmGNK44Q" className="text-muted-foreground hover:text-foreground">
          <FaDiscord />
        </a>
        <a href="https://chat.whatsapp.com/JxQEn2FKDny0DdwkDuzoQR" className="text-muted-foreground hover:text-foreground">
          <FaWhatsapp />
        </a>
        <a href="https://www.github.com/pollinations/pollinations" className="text-muted-foreground hover:text-foreground">
          <FaGithub />
        </a>
        <a href="https://instagram.com/pollinations_ai" className="text-muted-foreground hover:text-foreground">
          <FaInstagram />
        </a>
        <a href="https://tiktok.com/@pollinations.ai" className="text-muted-foreground hover:text-foreground">
          <FaTiktok />
        </a>
      </div>
    </footer>

  )
}