Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
abhitrueprogrammer committed Sep 21, 2024
2 parents 56dcc30 + 399bca9 commit f8f9a0d
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/app/components/ResearchProjects.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
"use client";
import React from 'react'
import { useRouter } from 'next/navigation';

function openPage(project: string){
const router = useRouter();
if(typeof window !== "undefined"){
router.push("/project")
}
}

function Capsule(text) {
return (
Expand Down

0 comments on commit f8f9a0d

Please sign in to comment.