Skip to content

Commit

Permalink
Sm lab organisation added
Browse files Browse the repository at this point in the history
  • Loading branch information
MYSELF-SAYAN committed Jan 31, 2024
1 parent b39f8e4 commit aff46b0
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
21 changes: 21 additions & 0 deletions src/constants/projectData.js
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,27 @@ const newProjectData = [
],
noOfProjects: 1,
},
{
organization: 'Subhankar mishra lab',
imageUrl: "https://firebasestorage.googleapis.com/v0/b/winterofcode-55d97.appspot.com/o/tirtha-logo-light.svg?alt=media&token=91567821-ade8-4f7b-bfdb-a578b7d83583",
projects: [
{
id: 1,
name: "Tirtha",
students: 1,
codeLink: "https://github.com/smlab-niser/tirtha-public/",
techStack: ["Computer Vision", "Python"],
description: `Project Tirtha is an academic initiative to create 3D models of heritage sites using crowdsourced images. The word Tirtha is Sanskrit for "a place of pilgrimage", and is commonly used to refer to the sacred sites of Hinduism. Our goal is to preserve and showcase the beauty and cultural significance of heritage sites. We believe that by allowing the general public to contribute to the creation of these models, and by providing open access to these models, we can increase awareness and appreciation of these important cultural landmarks and inspire future generations to maintain them for years to come.
`,
mentor: [{
name: "Jyotirmaya Shivottam",
linkedin: "",
},],
},

],
noOfProjects: 1,
},



Expand Down
5 changes: 3 additions & 2 deletions src/pages/Organisation/Organisation.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,11 @@ const Organisation = () => {
<div style={{ display: "flex", flexDirection: "row" }}>
{project.mentor.map((mentor, index) => (
<div key={mentor.id}>
<p onClick={() => openInNewWindow(mentor.linkedin)}>
<p onClick={mentor.linkedin ? () => openInNewWindow(mentor.linkedin) : undefined}>
{mentor.name}
{index < project.mentor.length - 1 && ", "}
</p>

</div>
))}
</div>
Expand Down Expand Up @@ -145,7 +146,7 @@ const Organisation = () => {
<div style={{ display: "flex", flexDirection: "row" }}>
{selectedProject.mentor.map((mentor, index) => (
<div key={mentor.id}>
<p onClick={() => openInNewWindow(mentor.linkedin)}>
<p onClick={mentor.linkedin ? () => openInNewWindow(mentor.linkedin) : undefined}>
{mentor.name}
{index < selectedProject.mentor.length - 1 && ", "}
</p>
Expand Down

0 comments on commit aff46b0

Please sign in to comment.