Skip to content
Snippets Groups Projects
Commit b3a20419 authored by Thomas Roos's avatar Thomas Roos
Browse files

Add Hero to all pages

parent be19d860
No related branches found
No related tags found
No related merge requests found
import React from 'react';
const Hero = (props) => {
return (
<section className="hero is-primary">
<div className="hero-body">
<div className="container">
<h1 className="title">
{props.title}
</h1>
<h2 className="subtitle">
{props.subtitle}
</h2>
</div>
</div>
</section>
)
}
export default Hero;
import React from 'react';
import NavBar from '../components/NavBar';
import Hero from '../components/Hero';
const AddGraders = () => {
return (
<div>
<NavBar />
<Hero title='Add Graders' subtitle='Many hands make light work' />
<h1>React Router demo</h1>
Hoi dit de AddGraders
......
import React from 'react';
import NavBar from '../components/NavBar';
import Hero from '../components/Hero';
const AddStudents = () => {
return (
......@@ -7,6 +8,8 @@ const AddStudents = () => {
<NavBar />
<Hero title='Add Students' subtitle='Tell me who made this exam' />
<h1>React Router demo</h1>
Hoi dit de AddStudents
</div>
......
import React from 'react';
import NavBar from '../components/NavBar';
import Hero from '../components/Hero';
const CheckStudents = () => {
return (
......@@ -7,6 +8,8 @@ const CheckStudents = () => {
<NavBar />
<Hero title='Check Students' subtitle='Sanity check for the students' />
<h1>React Router demo</h1>
Hoi dit de CheckStudents
</div>
......
import React from 'react';
import NavBar from '../components/NavBar';
import Hero from '../components/Hero';
const Grade = () => {
return (
<div>
<NavBar />
<Hero title='Grade' subtitle='This is where the magic happens!' />
<h1>React Router demo</h1>
Hoi dit de Grade
......
import React from 'react';
import NavBar from '../components/NavBar';
import Hero from '../components/Hero';
const Home = () => {
return (
......@@ -7,16 +8,8 @@ const Home = () => {
<NavBar />
<section className="hero is-primary">
<div className="hero-body">
<p className="title">
Documentation
</p>
<p className="subtitle">
Everything you need to <strong>create a website</strong> with Bulma
</p>
</div>
</section>
<Hero title='Home' subtitle='Zesje - open source exam grading software' />
<h1>React Router demo</h1>
Hoi dit de homepagina
......
import React from 'react';
import NavBar from '../components/NavBar';
import Hero from '../components/Hero';
const Reset = () => {
return (
<div>
<NavBar />
<Hero title='Reset' subtitle="Please don't hurt my database :(" />
<h1>React Router demo</h1>
Hoi dit de Reset
......
import React from 'react';
import NavBar from '../components/NavBar';
import Hero from '../components/Hero';
const Upload = () => {
return (
......@@ -7,6 +8,8 @@ const Upload = () => {
<NavBar />
<Hero title='Upload' subtitle='Omnomnomnom Exams!' />
<h1>React Router demo</h1>
Hoi dit de Upload
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment