stuff
This commit is contained in:
parent
07d767a4ae
commit
c4630633b8
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
.vscode
|
@ -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>
|
||||
|
@ -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>
|
||||
@ -58,6 +59,10 @@ const Home = () => {
|
||||
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/>
|
||||
<small>I probably forgot something, so chances are this probably isn't everything.</small>
|
||||
|
||||
|
@ -116,6 +116,7 @@ class Client extends EventEmitter {
|
||||
domain: this.domain
|
||||
},
|
||||
secret: env.API_SECRET,
|
||||
name: `corgiCookie`,
|
||||
resave: false,
|
||||
saveUninitialized: false,
|
||||
store: MongoStore.create({
|
||||
|
Loading…
Reference in New Issue
Block a user