1+ "use client" ;
2+ import type { FC } from "react" ;
3+ import { Footer } from "flowbite-react" ;
4+ import { MdFacebook } from "react-icons/md" ;
5+ import { FaDribbble , FaGithub , FaInstagram , FaTwitter } from "react-icons/fa" ;
6+
7+ const MainContentFooter : FC = function ( ) {
8+ return (
9+ < >
10+ < Footer container >
11+ < div className = "flex w-full flex-col gap-y-6 lg:flex-row lg:justify-between lg:gap-y-0" >
12+ < Footer . LinkGroup >
13+ < Footer . Link href = "#" className = "mr-3 mb-3 lg:mb-0" >
14+ Terms and conditions
15+ </ Footer . Link >
16+ < Footer . Link href = "#" className = "mr-3 mb-3 lg:mb-0" >
17+ Privacy Policy
18+ </ Footer . Link >
19+ < Footer . Link href = "#" className = "mr-3" >
20+ Licensing
21+ </ Footer . Link >
22+ < Footer . Link href = "#" className = "mr-3" >
23+ Cookie Policy
24+ </ Footer . Link >
25+ < Footer . Link href = "#" > Contact</ Footer . Link >
26+ </ Footer . LinkGroup >
27+ < Footer . LinkGroup >
28+ < div className = "flex gap-4 md:gap-0" >
29+ < Footer . Link
30+ href = "#"
31+ className = "hover:[&>*]:text-black dark:hover:[&>*]:text-gray-300"
32+ >
33+ < MdFacebook className = "text-lg" />
34+ </ Footer . Link >
35+ < Footer . Link
36+ href = "#"
37+ className = "hover:[&>*]:text-black dark:hover:[&>*]:text-gray-300"
38+ >
39+ < FaInstagram className = "text-lg" />
40+ </ Footer . Link >
41+ < Footer . Link
42+ href = "#"
43+ className = "hover:[&>*]:text-black dark:hover:[&>*]:text-gray-300"
44+ >
45+ < FaTwitter className = "text-lg" />
46+ </ Footer . Link >
47+ < Footer . Link
48+ href = "#"
49+ className = "hover:[&>*]:text-black dark:hover:[&>*]:text-gray-300"
50+ >
51+ < FaGithub className = "text-lg" />
52+ </ Footer . Link >
53+ < Footer . Link
54+ href = "#"
55+ className = "hover:[&>*]:text-black dark:hover:[&>*]:text-gray-300"
56+ >
57+ < FaDribbble className = "text-lg" />
58+ </ Footer . Link >
59+ </ div >
60+ </ Footer . LinkGroup >
61+ </ div >
62+ </ Footer >
63+ < p className = "my-8 text-center text-sm text-gray-500 dark:text-gray-300" >
64+ © 2013-2025 appseed.us. All rights reserved.
65+ </ p >
66+ </ >
67+ ) ;
68+ } ;
69+
70+
71+ export default MainContentFooter
0 commit comments