This commit is contained in:
Henrik Larsson 2023-05-05 20:02:11 +02:00
parent 4879a8e04e
commit 748439803c
3 changed files with 29 additions and 29 deletions

View File

@ -2,6 +2,7 @@
import Logo from 'components/ui/logo/logo'; import Logo from 'components/ui/logo/logo';
import { useTranslations } from 'next-intl'; import { useTranslations } from 'next-intl';
import Link from 'next/link';
const Footer = () => { const Footer = () => {
const currentYear = new Date().getFullYear(); const currentYear = new Date().getFullYear();
@ -10,14 +11,12 @@ const Footer = () => {
return ( return (
<footer className="border-t border-ui-border bg-app"> <footer className="border-t border-ui-border bg-app">
<div className="mx-auto w-full py-2 px-4 lg:py-3 lg:px-8 2xl:px-16"> <div className="mx-auto w-full py-4 px-4 lg:py-6 lg:px-8 2xl:px-16 2xl:py-8">
<div className="flex w-full justify-between items-baseline my-12 transition-colors duration-150"> <div className="flex flex-col w-full space-y-2 items-center transition-colors duration-150 md:flex-row md:items-baseline md:justify-between md:space-y-0">
<div className=""> <Link className="flex flex-initial items-center font-bold md:mr-24" href="/">
<a className="flex flex-initial items-center font-bold md:mr-24" href="/"> <Logo />
<Logo /> </Link>
</a> <p className="text-sm text-low-contrast">
</div>
<p>
&copy; {copyrightDate} Kodamera - {t('copyright')} &copy; {copyrightDate} Kodamera - {t('copyright')}
</p> </p>
</div> </div>

View File

@ -1,5 +1,3 @@
'use client'
import dynamic from 'next/dynamic' import dynamic from 'next/dynamic'
const SanityImage = dynamic(() => import('components/ui/sanity-image')) const SanityImage = dynamic(() => import('components/ui/sanity-image'))

View File

@ -1,21 +1,24 @@
const Logo = ({ className = 'w-auto h-8', ...props }) => ( const Logo = ({ className = 'w-auto h-8', ...props }) => {
<div className="flex items-center space-x-4"> return (
<svg <div className="flex items-center space-x-4">
xmlns="http://www.w3.org/2000/svg" <svg
viewBox="0 0 109 80" xmlns="http://www.w3.org/2000/svg"
className={className} viewBox="0 0 109 80"
{...props} className={className}
> {...props}
<path >
fill="currentColor" <path
d="M54.6,0C32.8,0,15.1,17.9,15.1,40c0,10.6,4.3,18.1,4.6,18.8h20.6c-0.7-0.5-9.1-6.9-9.1-18.8 c0-13.1,10.5-23.7,23.4-23.7S78,26.9,78,40S67.5,63.7,54.6,63.7H0V80h54.6c21.8,0,39.5-17.9,39.5-40S76.5,0,54.6,0z" fill="currentColor"
/> d="M54.6,0C32.8,0,15.1,17.9,15.1,40c0,10.6,4.3,18.1,4.6,18.8h20.6c-0.7-0.5-9.1-6.9-9.1-18.8 c0-13.1,10.5-23.7,23.4-23.7S78,26.9,78,40S67.5,63.7,54.6,63.7H0V80h54.6c21.8,0,39.5-17.9,39.5-40S76.5,0,54.6,0z"
<path />
fill="currentColor" <path
d="M109,63.7V80H75.3c7.2-3.7,13.2-9.4,17.4-16.3H109z" fill="currentColor"
/> d="M109,63.7V80H75.3c7.2-3.7,13.2-9.4,17.4-16.3H109z"
</svg> />
</div> </svg>
) <span className="sr-only">KM Storefront</span>
</div>
)
}
export default Logo export default Logo