File size: 5,628 Bytes
f5071ca |
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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 |
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 (
<footer className="bg-gray-900" aria-labelledby="footer-heading">
<h2 id="footer-heading" className="sr-only">
Footer
</h2>
<section className="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:py-16 lg:px-8">
<section className="pb-8 xl:grid xl:grid-cols-5 xl:gap-8">
<section className="grid grid-cols-2 gap-8 xl:col-span-4">
<section className="md:grid md:grid-cols-2 md:gap-8">
<section>
<h3 className="text-sm font-semibold text-gray-400 tracking-wider uppercase">
Solutions
</h3>
<ul className="mt-4 space-y-4">
{navigation.solutions.map((item) => (
<li key={item.name}>
<NavLink
onClick={ResetLocation}
to={item.href}
className="text-base text-gray-300 hover:text-white">
{item.name}
</NavLink>
</li>
))}
</ul>
</section>
<section className="mt-12 md:mt-0">
<h3 className="text-sm font-semibold text-gray-400 tracking-wider uppercase">
Support
</h3>
<ul className="mt-4 space-y-4">
{navigation.support.map((item) => (
<li key={item.name}>
<NavLink
onClick={ResetLocation}
to={item.href}
className="text-base text-gray-300 hover:text-white">
{item.name}
</NavLink>
</li>
))}
</ul>
</section>
</section>
<section className="md:grid md:grid-cols-2 md:gap-8">
<section>
<h3 className="text-sm font-semibold text-gray-400 tracking-wider uppercase">
Company
</h3>
<ul className="mt-4 space-y-4">
{navigation.company.map((item) => (
<li key={item.name}>
<NavLink
onClick={ResetLocation}
to={item.href}
className="text-base text-gray-300 hover:text-white">
{item.name}
</NavLink>
</li>
))}
</ul>
</section>
<section className="mt-12 md:mt-0">
<h3 className="text-sm font-semibold text-gray-400 tracking-wider uppercase">
Legal
</h3>
<ul className="mt-4 space-y-4">
{navigation.legal.map((item) => (
<li key={item.name}>
<NavLink
onClick={ResetLocation}
to={item.href}
className="text-base text-gray-300 hover:text-white">
{item.name}
</NavLink>
</li>
))}
</ul>
</section>
</section>
</section>
</section>
<section className="mt-8 border-t border-gray-700 pt-8 md:flex md:items-center md:justify-between">
<section className="flex space-x-6 md:order-2">
{navigation.social.map((item) => (
<a
key={item.name}
href={item.href}
target="_blank"
rel="noreferrer"
className="text-gray-400 hover:text-gray-300">
<span className="sr-only">{item.name}</span>
<img
className="h-6 w-6"
aria-hidden="true"
src={item.icon}
alt={item.icon}
/>
</a>
))}
</section>
<p className="mt-8 text-base text-gray-400 md:mt-0 md:order-1">
© <span>{new Date().getFullYear()}</span> Edgy, Inc. All rights
reserved.
</p>
</section>
</section>
</footer>
);
}
|