Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion frontend/src/pages/Form.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,11 @@ function Form() {
<p>
Just add the Issues, and let the Open source contributers show
their magic with the respetive Tech-Stack.
<span className="github_link"><a href="https://github.com/clubgamma/Good_First_Issue_Web_App">Github link</a> </span>
<span className="github_link">
<a href="https://github.com/clubgamma/Good_First_Issue_Web_App">
Github link
</a>{" "}
</span>
</p>
</div>
<div class="rigth-col">
Expand Down
20 changes: 20 additions & 0 deletions frontend/src/pages/nextFile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import React from 'react'
import './Card.css'
import { GoRepo } from "react-icons/go";
import { Link } from 'react-router-dom';

function nextFile({url, title, desc}) {
return (
<div className='card-bg'>
<div className='card'>
<Link to={url} target='_blank' className='repo-title'>
<div><GoRepo size={20} /></div>
<h3>{title}</h3>
</Link>
<p>{desc}</p>
</div>
</div>
)
}

export default nextFile
Empty file added newFile.js
Empty file.