Some minor fixes.

This commit is contained in:
codevictory
2021-12-06 18:33:55 +02:00
parent d63f813152
commit b47c562336
3 changed files with 37 additions and 55 deletions

View File

@@ -2,9 +2,9 @@ import "./styles/notFound.scss";
export const NotFound = () => { export const NotFound = () => {
return ( return (
<article> <section>
<h1>Page not found</h1> <h1>Page not found</h1>
<p>Check the link address...</p> <p>Check the link address...</p>
</article> </section>
) )
} }

View File

@@ -1,57 +1,40 @@
import { Link } from 'react-router-dom'; import { Link } from 'react-router-dom';
import "./styles/program.scss"; import './styles/program.scss';
export const Program = () => { export const Program = () => {
return ( return (
<article> <section>
<h1>Program</h1> <h1>Program</h1>
<table> <article>
<tr> <h2>12:00</h2>
<th></th> <h3>Speech</h3>
<th>12:00</th> <p>Boring BS. Lorem ipsum dolor sit amet.</p>
<th></th> <h3>Lunch</h3>
</tr> <p>
<tr> Eating yummy yum.
<td>Speech</td> <i>
<td>Boring BS. Lorem ipsum dolor sit amet.</td> <Link to='/menu'>To menu</Link>
<td>Veikko</td> </i>
</tr> </p>
<tr>
<td>Lunch</td>
<td>Eating yummy yum.</td>
<td><Link to="/menu" >To menu</Link></td>
</tr>
<tr>
<th></th>
<th>14:00</th>
<th></th>
</tr>
<tr>
<td>Games</td>
<td>Activity lol.</td>
<td>Be active.</td>
</tr>
<tr>
<td>More something</td>
<td>Lorem ipsum dolor sit amet.</td>
<td>More more more</td>
</tr>
<tr>
<th></th>
<th>23:00</th>
<th></th>
</tr>
<tr>
<td>More something</td>
<td>Lorem ipsum dolor sit amet.</td>
<td>More more more</td>
</tr>
<tr>
<td>More something</td>
<td>Lorem ipsum dolor sit amet.</td>
<td>More more more</td>
</tr>
</table>
</article> </article>
) <article>
} <h2>14:00</h2>
<h3>Games</h3>
<p>Activity lol.</p>
<p>Be active.</p>
<h3>More something</h3>
<p>Lorem ipsum dolor sit amet.</p>
<h3>More more more</h3>
</article>
<article>
<h2>23:00</h2>
<h3>More something</h3>
<p>Lorem ipsum dolor sit amet.</p>
<h3>More more more</h3>
<h3>More something</h3>
<p>Lorem ipsum dolor sit amet.</p>
<h3>More more more</h3>
</article>
</section>
);
};

View File

@@ -6,7 +6,6 @@ import { RegForm } from '../components/RegForm'
export const Registration = () => { export const Registration = () => {
return ( return (
<> <>
<Header />
<div className="Registration-form"> <div className="Registration-form">
<RegForm /> <RegForm />
</div> </div>