diff --git a/src/components/common/Footer/Footer.tsx b/src/components/common/Footer/Footer.tsx index 623eef7..3ff7cbc 100644 --- a/src/components/common/Footer/Footer.tsx +++ b/src/components/common/Footer/Footer.tsx @@ -1,33 +1,51 @@ import { FaFacebook, FaInstagram, FaYoutube, FaTwitch } from "react-icons/fa"; import { FaXTwitter } from "react-icons/fa6"; +function BottomLink ({ children }: { children: React.ReactNode }) { + return ( +

{children}

+ ); + } + + function TopFooter () { + return ( +
+ + logo + + + + + + + + +
+ ) + } + + function BotFooter () { + return ( +
+ +

KONFERNO © 2024 Wszelkie prawa zastrzeżone

+
+ + Sponsorzy + Ostrzeżenie prawne + Polityka prywatności + Polityka plików cookies + Kanał informacyjny + +
+ ) + } + export default function Footer () { return ( ) } \ No newline at end of file