Skip to content

Commit

Permalink
do not prefetch urls
Browse files Browse the repository at this point in the history
  • Loading branch information
ka8725 committed Dec 6, 2023
1 parent 5d0e2fa commit 4ddc1b4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ const inter = Inter({ subsets: ['latin'] });

export const metadata: Metadata = {
metadataBase: new URL('https://get.budgetingkid.com'),
alternates: { canonical: new URL('https://budgetingkid.com') },
title: 'BudgetingKid - Foster good financial habits in your children',
description:
'Empower your kids with financial literacy and effortlessly manage their allowances. Sign up for our free app today and start fostering a financially savvy future for your children.',
Expand Down
7 changes: 6 additions & 1 deletion components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,19 @@ export default function Header() {
</nav>
<ul className="flex gap-4 ml-auto">
<li>
<Button as={Link} href={'https://budgetingkid.com/users/sign_up'}>
<Button
as={Link}
prefetch={false}
href={'https://budgetingkid.com/users/sign_up'}
>
Join
</Button>
</li>
<li>
<Button
type={'outline'}
as={Link}
prefetch={false}
href={'https://budgetingkid.com/users/sign_in'}
>
Login
Expand Down

0 comments on commit 4ddc1b4

Please sign in to comment.