This commit is contained in:
Red Duck 2022-02-17 18:30:34 +02:00
parent 5849f53f40
commit 6419c5f794
2 changed files with 32 additions and 0 deletions

View File

@ -10,6 +10,7 @@ export default function Articles() {
<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}>
<div className={styles.ArticleBox}>
<Link href="/articles/beta_2_alpha_1"><a className={styles.LinkText}>Beta 2 Alpha 1!</a></Link><div className={styles.Time}>Published on 2022/Feb/17</div><br/>
<Link href="/articles/clearing_up_my_position_in_the_attack"><a className={styles.LinkText}>Clearing up my position in the attack.</a></Link><div className={styles.Time}>Published on 2022/Feb/16</div><br/>
<Link href="/articles/cummies_reply_to_update"><a className={styles.LinkText}>Reply of Cummies to "An update on my situation"</a></Link><div className={styles.Time}>Published on 2022/Feb/16</div><br/>
<Link href="/articles/new_updates_to_thered_sh"><a className={styles.LinkText}>New updates to TheRed.SH!</a></Link><div className={styles.Time}>Published on 2022/Feb/15</div><br/>

View File

@ -0,0 +1,31 @@
import Article from '../../components/article';
import Author from '../../components/author';
import Navbar from '../../components/navbar';
import EndQuote from '../../components/endquote';
import CodeBlock from '../../components/codeblock';
import embed from '../../components/embed';
import Link from 'next/link';
export default function Beta2Alpha1 () {
return (
<>
<Navbar />
<Article>
<Author>TheRed</Author>
<b style={{fontSize: "20pt"}}>Beta 2 Alpha 1</b><br/>
Hello there!<br/>
This is a new incremental update to Beta 2, Beta 2 Alpha 1!<br/>
This update switched the style up a little bit, as a matte look just doesn't look that great, lets be honest!<br/>
I tried to keep the matte look still going, but changed up the colors and RGBified everything ;)<br/>
This is a very small update, for example, changing the way how quotes look!:<br/>
<CodeBlock author="Example" quote>This is an example! Also, links now have a little animation when you hover over them, like <Link href="/articles/big_chungus_testing"><a>this one</a></Link>!</CodeBlock>
This is pretty much it lol
<br/><br/>
<EndQuote>
Cheers.<br/>
TheRed
</EndQuote>
</Article>
</>
)
}