43 lines
1.1 KiB
TypeScript
43 lines
1.1 KiB
TypeScript
import { appConfig } from '@/packages/shared/src/config';
|
|
|
|
import { AppLogo } from '@kit/shared/components/app-logo';
|
|
import { Footer } from '@kit/ui/marketing';
|
|
import { Trans } from '@kit/ui/trans';
|
|
|
|
export function SiteFooter() {
|
|
return (
|
|
<Footer
|
|
logo={<AppLogo className="w-[85px] md:w-[95px]" />}
|
|
description=""
|
|
copyright={
|
|
<Trans
|
|
i18nKey="marketing:copyright"
|
|
values={{
|
|
product: appConfig.name,
|
|
year: new Date().getFullYear(),
|
|
}}
|
|
/>
|
|
}
|
|
sections={[
|
|
{
|
|
heading: <Trans i18nKey="marketing:legal" />,
|
|
links: [
|
|
{
|
|
href: '/terms-of-service',
|
|
label: <Trans i18nKey="marketing:termsOfService" />,
|
|
},
|
|
{
|
|
href: '/privacy-policy',
|
|
label: <Trans i18nKey="marketing:privacyPolicy" />,
|
|
},
|
|
{
|
|
href: '/cookie-policy',
|
|
label: <Trans i18nKey="marketing:cookiePolicy" />,
|
|
},
|
|
],
|
|
},
|
|
]}
|
|
/>
|
|
);
|
|
}
|