const { useState } = React;
function Footer({ onNavigate }) {
const [email, setEmail] = useState('');
const col = (title, items) => (
{title}
{items.map(({ label, page }) => (
-
page && onNavigate(page)} style={{
fontSize: '13px', color: 'rgba(255,255,255,0.6)',
cursor: page ? 'pointer' : 'default',
textDecoration: 'none',
}}>{label}
))}
);
const columns = [
{ title: 'Services', items: [
{ label: 'Identity architecture', page: 'services' },
{ label: 'Content presence', page: 'services' },
{ label: 'Authority systems', page: 'services' },
{ label: 'Strategy call', page: 'contact' },
{ label: 'Work', page: 'work' },
]},
{ title: 'Company', items: [
{ label: 'About us', page: 'about' },
{ label: 'Contact', page: 'contact' },
{ label: 'Insights', page: null },
{ label: 'Blog', page: null },
{ label: 'Resources', page: null },
]},
{ title: 'Legal', items: [
{ label: 'Privacy policy' }, { label: 'Terms of service' },
{ label: 'Disclaimer' }, { label: 'Cookies' }, { label: 'Connect' },
]},
{ title: 'Social', items: [
{ label: 'Instagram' }, { label: 'LinkedIn' },
{ label: 'Email us' }, { label: 'Bangalore, India' },
]},
{ title: 'Our approach', items: [
{ label: 'Strategy first' }, { label: 'Brand architecture' },
{ label: 'Healthcare focus' }, { label: 'Authority first' },
]},
{ title: 'Authority strategy', items: [
{ label: 'For doctors' }, { label: 'For founders' },
{ label: 'Healthcare branding' }, { label: 'Premium positioning' },
]},
];
return (
);
}
Object.assign(window, { Footer });