import { NavLink } from "react-router-dom"; import Linkedin from "../../assets/socials/linkedin-pink.svg"; import Github from "../../assets/socials/github-pink.svg"; import Portfolio from "../../assets/socials/portfolio.png"; const navigation = { solutions: [ { name: "+1 202 555 0186", href: "tel:+1-202-555-0186" }, { name: "+44 1632 960362", href: "tel:+44-1632-960362" }, { name: "support@edgy.com", href: "mailto:support@edgy.com" }, ], support: [ { name: "Pricing", href: "/pricing" }, { name: "FAQ", href: "/faq" }, { name: "Contact", href: "/contact" }, ], company: [ { name: "About", href: "/about" }, { name: "Blog", href: "/blog" }, { name: "Jobs", href: "/jobs" }, ], legal: [ { name: "Terms", href: "/terms" }, { name: "Privacy", href: "/privacy" }, { name: "Refunds", href: "/refunds" }, ], social: [ { name: "Github", href: "https://github.com/catherineisonline/edgy", icon: Github, }, { name: "Portfolio", href: "https://ekaterine-mitagvaria.vercel.app/", icon: Portfolio, }, { name: "Linkedin", href: "https://www.linkedin.com/in/catherinemitagvaria/", icon: Linkedin, }, ], }; export default function Footer() { const ResetLocation = () => window.scrollTo(0, 0); return ( ); }