Skip to content

Commit 8547981

Browse files
committed
feat: Wrap 'Learn More' button with next/link to fulling.ai and update its title.
1 parent 7325456 commit 8547981

1 file changed

Lines changed: 11 additions & 8 deletions

File tree

components/home-page.tsx

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import { useCallback, useState } from 'react';
44
import Image from 'next/image';
5+
import Link from 'next/link';
56
import { useRouter } from 'next/navigation';
67
import { useSession } from 'next-auth/react';
78

@@ -138,14 +139,16 @@ export function HomePage() {
138139
>
139140
{getButtonText()}
140141
</Button>
141-
<Button
142-
size="lg"
143-
variant="secondary"
144-
title="Learn more about FullStack Agent (Coming Soon)"
145-
className="w-48"
146-
>
147-
Learn More
148-
</Button>
142+
<Link href="https://fulling.ai/" target="_blank" rel="noopener">
143+
<Button
144+
size="lg"
145+
variant="secondary"
146+
title="Learn more about FullStack Agent"
147+
className="w-48"
148+
>
149+
Learn More
150+
</Button>
151+
</Link>
149152
</div>
150153
</div>
151154
</div>

0 commit comments

Comments
 (0)