Website/pages/articles/beta_2_alpha_1.js
2022-02-17 18:30:34 +02:00

31 lines
1.4 KiB
JavaScript

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>
</>
)
}