diff --git a/apps/web/app/(marketing)/_components/site-footer.tsx b/apps/web/app/(marketing)/_components/site-footer.tsx index 25c2346c6..bd8fdb4cd 100644 --- a/apps/web/app/(marketing)/_components/site-footer.tsx +++ b/apps/web/app/(marketing)/_components/site-footer.tsx @@ -1,5 +1,4 @@ -import Link from 'next/link'; - +import { Footer } from '@kit/ui/marketing'; import { Trans } from '@kit/ui/trans'; import { AppLogo } from '~/components/app-logo'; @@ -7,133 +6,53 @@ import appConfig from '~/config/app.config'; export function SiteFooter() { return ( - - ); -} - -function FooterSectionHeading(props: React.PropsWithChildren) { - return {props.children}; -} - -function FooterSectionList(props: React.PropsWithChildren) { - return ; -} - -function FooterLink(props: React.PropsWithChildren) { - return ( -
  • a]:transition-colors' +
  • + sections={[ + { + heading: , + links: [ + { href: '/blog', label: }, + { href: '/contact', label: }, + ], + }, + { + heading: , + links: [ + { + href: '/docs', + label: , + }, + ], + }, + { + heading: , + links: [ + { + href: '/terms-of-service', + label: , + }, + { + href: '/privacy-policy', + label: , + }, + { + href: '/cookie-policy', + label: , + }, + ], + }, + ]} + /> ); } diff --git a/apps/web/app/(marketing)/_components/site-header-account-section.tsx b/apps/web/app/(marketing)/_components/site-header-account-section.tsx index 15daa8854..25d95b781 100644 --- a/apps/web/app/(marketing)/_components/site-header-account-section.tsx +++ b/apps/web/app/(marketing)/_components/site-header-account-section.tsx @@ -84,7 +84,7 @@ function AuthButtons() {