Skip to content

Commit 1de0b47

Browse files
committed
feat: Change Find Properties and Learn More to links
1 parent c9e3dcf commit 1de0b47

File tree

1 file changed

+13
-15
lines changed

1 file changed

+13
-15
lines changed

src/app/components/LandingPage.tsx

Lines changed: 13 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -37,21 +37,19 @@ const LandingPage = () => (
3737
</p>
3838
</div>
3939
<div className="inline-flex space-x-2">
40-
<Link href="/map">
41-
<Button size="lg" className="bg-green-600 text-white">
42-
<ArrowRightIcon className="w-5 h-5 mr-2" />
43-
Find properties
44-
</Button>
45-
</Link>
46-
<Link href="/about">
47-
<Button
48-
size="lg"
49-
className="bg-transparent border border-green-600 text-green-600"
50-
>
51-
<ArrowRightIcon className="w-5 h-5 mr-2" />
52-
Learn more
53-
</Button>
54-
</Link>
40+
<Button href="/map" as={Link} size="lg" className="bg-green-600 text-white">
41+
<ArrowRightIcon className="w-5 h-5 mr-2" />
42+
Find properties
43+
</Button>
44+
<Button
45+
href="about"
46+
as={Link}
47+
size="lg"
48+
className="bg-transparent border border-green-600 text-green-600"
49+
>
50+
<ArrowRightIcon className="w-5 h-5 mr-2" />
51+
Learn more
52+
</Button>
5553
</div>
5654
</div>
5755
</div>

0 commit comments

Comments
 (0)