Website/pages/articles/beta_2_alpha_2.js
2022-04-11 22:31:09 +03:00

27 lines
1.1 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 Beta2Alpha2 () {
return (
<>
<Navbar />
<Article>
<Author>TheRed</Author>
<b style={{fontSize: "20pt"}}>Beta 2 Alpha 2</b><br/>
Oh, hi there!<br/>
No, I'm not dead. Unless you mean my youtube channel. Anyways, this is a (super) minor update, bringing in... literally only embeds. yep that's right.<br/>
I am very proud of myself thank you for the applause. Yeah but don't worry, I'll attempt to speed up development of this site, there should be some better features upcoming fairly soon.
<br/><br/>
<EndQuote>
Cheers.<br/>
TheRed
</EndQuote>
</Article>
</>
)
}