some more changes
This commit is contained in:
parent
e14a3bbe21
commit
24d37efe3d
3 changed files with 5 additions and 1 deletions
|
@ -3,6 +3,7 @@ import styles from '../styles/Article.module.css';
|
|||
export default function Article(props) {
|
||||
return (
|
||||
<>
|
||||
<title>TheRed.SH / Article</title>
|
||||
<div className={styles.Article}>
|
||||
{props.children}
|
||||
</div>
|
||||
|
|
|
@ -5,6 +5,7 @@ import Link from "next/link";
|
|||
export default function Articles() {
|
||||
return (
|
||||
<>
|
||||
<title>TheRed.SH / Articles</title>
|
||||
<Navbar />
|
||||
<span className={styles.TopText}>Latest (This is a very new part of the website, no proper automation has been implemented, all articles are written manually ^*^)</span>
|
||||
<div className={styles.Articles}>
|
||||
|
|
|
@ -3,7 +3,9 @@ import Button from '../components/button.js'
|
|||
import Redirect from '../components/redirect.js'
|
||||
|
||||
export default function Projects() {
|
||||
return <><title>TheRed.SH / Projects</title><div className={styles.Box}>
|
||||
return <>
|
||||
<title>TheRed.SH / Projects</title>
|
||||
<div className={styles.Box}>
|
||||
<Redirect page="home"/>
|
||||
<div className={styles.ScrollBox}>
|
||||
<h1 className={styles.Header}>Here are all of my projects (Only a demo, none of the buttons work):</h1>
|
||||
|
|
Loading…
Reference in a new issue