This commit is contained in:
Erik 2022-03-26 22:20:20 +02:00
parent 07d767a4ae
commit c4630633b8
Signed by: Navy.gif
GPG Key ID: 811EC0CD80E7E5FB
4 changed files with 14 additions and 2 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.vscode

View File

@ -15,6 +15,7 @@ import { useLoginContext } from './Structures/UserContext';
import NotFound from './pages/NotFound';
import Upload from './pages/Upload';
import { UnauthedRoute } from './Routes/Unauthed';
import { Helmet } from 'react-helmet';
const User = ({user}) => {
return (
@ -81,6 +82,10 @@ function App() {
return (
<div className="app">
<Helmet>
<title>Corgi Corner</title>
</Helmet>
<BrowserRouter>
<header>

View File

@ -46,7 +46,8 @@ const Home = () => {
<p>
I can work with various ...things <br />
I'm most proficient with JS within the Node environment as it's the one I've worked with the longest,
though I can work well within any JS environment now. When working on Node projects I most commonly use MongoDB and MariaDB if needed. Web apis I write using Express.
though I can work well within any JS environment now. When working on Node projects I most commonly use MongoDB and MariaDB if needed.
Web APIs I write using Express.
</p>
<p>
@ -55,7 +56,11 @@ const Home = () => {
<p>
I've also dabbled in writing the occasional C# and Java project,
I can hold my own when using these languages but would not consider myself proficient with them.
I can hold my own when using these languages but would not consider myself proficient with them.
</p>
<p>
Honorary mentions to Lua and Python, both of which I can use well but don't really use much in practise.
</p>
<br/>

View File

@ -116,6 +116,7 @@ class Client extends EventEmitter {
domain: this.domain
},
secret: env.API_SECRET,
name: `corgiCookie`,
resave: false,
saveUninitialized: false,
store: MongoStore.create({