import React from 'react' import { Link } from 'systems/Core/Link' import css from 'styled-jsx/css' export const Header = () => { return (
Follow us
{linkStyles.styles}
) } const styles = css` .Root { @apply px-10 py-8 flex items-center text-white shadow-sm border-b border-border; } .MenuList { @apply grid grid-flow-col gap-3 items-center; } .MainMenu { @apply flex-1; .MenuList { @apply pl-12; grid-auto-columns: min-content; } } .SocialMedia { @apply flex items-center; span { @apply pr-4 text-gray-500; } a img { @apply opacity-75; } a:hover img { @apply opacity-100; } } .Flags { @apply pl-12; } ` const linkStyles = css.resolve` a { @apply py-2 px-4; } a, a:hover { @apply no-underline text-lg text-gray-500 cursor-pointer rounded-md; } a:hover, a.active { @apply text-white; background: theme('colors.header.menuItemBg'); } `