Skip to content

Commit 535de09

Browse files
authored
Update Explore.tsx (#303)
Linked view more opportunities in landing page to the project page
1 parent eba4baa commit 535de09

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

components/landing-page/Explore.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import { ArrowRight } from 'lucide-react';
55
import Image from 'next/image';
66
import { useState, useRef, useEffect } from 'react';
77
import ProjectCard from './project/ProjectCard';
8+
import Link from 'next/link';
89

910
interface ExploreProject {
1011
id: string;
@@ -209,7 +210,7 @@ export default function Explore() {
209210

210211
{/* Footer */}
211212
<div className='mt-20 flex cursor-pointer items-center gap-1'>
212-
<p className='font-medium underline'>View More Opportunities</p>
213+
<Link href="/projects"><p className='font-medium underline'>View More Opportunities</p></Link>
213214
<ArrowRight className='h-3 w-3' />
214215
</div>
215216

0 commit comments

Comments
 (0)