Privacy page restyling (#22)

This commit is contained in:
Riccardo Senica
2024-11-23 13:01:48 +01:00
committed by GitHub
parent c300b2501d
commit d8170747c7
12 changed files with 275 additions and 183 deletions

View File

@@ -3,38 +3,50 @@ import Link from 'next/link';
import { usePathname } from 'next/navigation';
import CustomLink from './CustomLink';
const links = [{ name: 'Subscribe', path: '/' }];
export const Footer = () => {
const pathname = usePathname();
return (
<div>
{pathname === '/' ? (
<p className='text-center text-xs text-gray-600'>
By subscribing, you agree to our{' '}
<Link
className='font-medium text-indigo-600 hover:text-indigo-500'
href='/privacy'
>
Privacy Policy
</Link>
.
</p>
) : (
<div className='flex justify-center space-x-4'>
{links.map(
link =>
pathname !== link.path &&
!(pathname === '/confirmation' && link.path === '/') && (
<CustomLink key={link.path} path={link.path} text={link.name} />
)
)}
{pathname === '/privacy' && (
<CustomLink path='/unsubscribe' text='Unsubscribe' />
)}
if (pathname === '/confirmation') {
return;
}
if (pathname === '/unsubscribe') {
return (
<div className='flex justify-center space-x-4'>
<CustomLink path='/' text='Subscribe' />
</div>
);
}
if (pathname === '/privacy') {
return (
<div className='relative flex w-full items-center'>
<div className='flex w-full justify-center'>
<div className='inline-flex'>
<CustomLink path='/' text='Subscribe' />
</div>
</div>
)}
</div>
<div className='absolute right-0'>
<CustomLink
path='/unsubscribe'
text='Unsubscribe'
className='rounded bg-gray-50 px-3 py-1.5 text-sm text-gray-500 transition-colors duration-200 hover:bg-gray-100'
/>
</div>
</div>
);
}
return (
<p className='text-center text-xs text-gray-600'>
By subscribing, you agree to our{' '}
<Link
className='font-medium text-indigo-600 hover:text-indigo-500'
href='/privacy'
>
Privacy Policy
</Link>
.
</p>
);
};