We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
next/link
fulling.ai
1 parent 7325456 commit 8547981Copy full SHA for 8547981
1 file changed
components/home-page.tsx
@@ -2,6 +2,7 @@
2
3
import { useCallback, useState } from 'react';
4
import Image from 'next/image';
5
+import Link from 'next/link';
6
import { useRouter } from 'next/navigation';
7
import { useSession } from 'next-auth/react';
8
@@ -138,14 +139,16 @@ export function HomePage() {
138
139
>
140
{getButtonText()}
141
</Button>
- <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>
+ <Link href="https://fulling.ai/" target="_blank" rel="noopener">
+ <Button
+ size="lg"
+ variant="secondary"
+ title="Learn more about FullStack Agent"
+ className="w-48"
+ >
149
+ Learn More
150
+ </Button>
151
+ </Link>
152
</div>
153
154
0 commit comments