diff --git a/apps/ai/src/components/layout/site-footer.tsx b/apps/ai/src/components/layout/site-footer.tsx index e33a14f3..6548def0 100644 --- a/apps/ai/src/components/layout/site-footer.tsx +++ b/apps/ai/src/components/layout/site-footer.tsx @@ -15,6 +15,7 @@ interface FooterLinkData { ariaLabel: string; preText?: string; mobileOnly?: boolean; + isLocal?: boolean; } const getCopyright = () => { @@ -34,6 +35,7 @@ const FooterLink: React.FC = ({ ariaLabel, preText, mobileOnly, + isLocal = false, }) => ( <>
= ({ {label} @@ -62,10 +63,11 @@ const links: FooterLinkData[] = [ preText: 'Designed in California by ', }, { - href: 'https://andvoila.gg/pricing', + href: '/pricing', label: 'Pricing', - ariaLabel: 'Navigate to Pricing page in a new window.', + ariaLabel: 'Navigate to Pricing page.', mobileOnly: true, + isLocal: true, }, { href: 'https://andvoila.gg/privacy',