{"version":3,"file":"index-d6a39f6c.js","sources":["../../../FE_DEV/src/containers/Footer/index.tsx"],"sourcesContent":["import { Container } from '@/components/Container'\nimport './styles.scss'\nimport { FontAwesomeIcon } from '@fortawesome/react-fontawesome'\nimport { faChevronUp } from '@fortawesome/free-solid-svg-icons'\n\ninterface PrimaryNavigationItem {\n\tname: string\n\turl: string\n\ticon: string\n\tprimaryNavChildren: PrimaryNavigationItem[]\n}\n\ninterface SecondaryNavigationItem {\n\tname: string\n\turl: string\n\ticon: string\n}\n\ninterface SocialNavigationItem {\n\tname: string\n\turl: string\n\ticon: string\n}\n\ninterface Footer {\n\tid: number\n\ttitle: string\n\tprimaryLogo: string\n\tsecondaryLogo: string\n\tfooterCopyrightTitle: string\n\tprimaryNavigation: PrimaryNavigationItem[]\n\tsecondaryNavigation: SecondaryNavigationItem[]\n\tsocialNavigation: SocialNavigationItem[]\n}\n\ninterface Props {\n\tfooter: Footer\n}\n\nexport default function Footer(props: Props) {\n\tconsole.log('footer data', props.footer)\n\n\tconst scrollToTop = () => {\n\t\twindow.scrollTo({\n\t\t\ttop: 0,\n\t\t\tbehavior: 'smooth', // Optional: smooth scrolling animation\n\t\t})\n\t}\n\n\treturn (\n\t\t