-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Modify button styled in form avaliation #15
- Loading branch information
Showing
7 changed files
with
112 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,49 @@ | ||
import { Link } from "react-router-dom"; | ||
import { HomePage } from "./styles" | ||
import { Link } from 'react-router-dom' | ||
import { HomePage } from './styles' | ||
|
||
export function Home(){ | ||
export function Home() { | ||
return ( | ||
<HomePage> | ||
<h1>Página Inicial do Professor</h1> | ||
<Link | ||
to="/form-avaliation" | ||
style={{color: '#fff', marginTop: '20px', border:'1px solid white', padding:'6px', borderRadius:'10px', textDecoration:'none'}}> | ||
Cadastrar prova ou tarefa | ||
<Link | ||
to="/form-avaliation" | ||
style={{ | ||
color: '#fff', | ||
marginTop: '20px', | ||
border: '1px solid white', | ||
padding: '6px', | ||
borderRadius: '10px', | ||
textDecoration: 'none' | ||
}} | ||
> | ||
Cadastrar prova ou tarefa | ||
</Link> | ||
<Link | ||
to="/solve-avaliation" | ||
style={{color: '#fff', marginTop: '20px', border:'1px solid white', padding:'6px', borderRadius:'10px', textDecoration:'none'}}> | ||
Responder prova ou tarefa | ||
<Link | ||
to="/solve-avaliation" | ||
style={{ | ||
color: '#fff', | ||
marginTop: '20px', | ||
border: '1px solid white', | ||
padding: '6px', | ||
borderRadius: '10px', | ||
textDecoration: 'none' | ||
}} | ||
> | ||
Responder prova ou tarefa | ||
</Link> | ||
<Link | ||
to="/view-avaliations" | ||
style={{color: '#fff', marginTop: '20px', border:'1px solid white', padding:'6px', borderRadius:'10px', textDecoration:'none'}}> | ||
Ver provas e tarefas cadastradas | ||
<Link | ||
to="/view-avaliations" | ||
style={{ | ||
color: '#fff', | ||
marginTop: '20px', | ||
border: '1px solid white', | ||
padding: '6px', | ||
borderRadius: '10px', | ||
textDecoration: 'none' | ||
}} | ||
> | ||
Ver provas e tarefas cadastradas | ||
</Link> | ||
</HomePage> | ||
) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
export const AddIcon = () => ( | ||
<svg | ||
width="12" | ||
height="12" | ||
viewBox="0 0 24 24" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<path | ||
d="M12 5V19" | ||
stroke="currentColor" | ||
strokeWidth="2" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
/> | ||
<path | ||
d="M5 12H19" | ||
stroke="currentColor" | ||
strokeWidth="2" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
/> | ||
</svg> | ||
) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters