Commits on Source (88)
-
insert authored
-
insert authored
-
Martin Löffler authored
-
Martin Löffler authored
-
insert authored
-
insert authored
-
insert authored
-
insert authored
-
insert authored
-
insert authored
-
insert authored
-
insert authored
-
Martin Löffler authored
-
Martin Löffler authored
-
Martin Löffler authored7a234b75
-
insert authored
-
Martin Löffler authored
-
Martin Löffler authored
-
Martin Löffler authored
-
Martin Löffler authored
-
Martin Löffler authored
-
insert authored
-
insert authored
-
insert authored
-
insert authored
-
insert authored
-
insert authored
-
insert authored
-
insert authored
-
insert authored
-
insert authored
-
insert authored
-
insert authored
-
insert authored
-
Martin Löffler authored63014a51
-
insert authored
-
-
insert authoreddc7296a4
-
insert authoredc9044543
-
Martin Löffler authored
-
insert authored9d73cc6e
-
insert authorede60785ae
-
insert authoredacc71823
-
insert authored73836f10
-
insert authored05374510
-
insert authored1142b302
-
nizune authorede0f9a9ae
-
nizune authored12e3958d
-
insert authored0370ac22
-
nizune authored3693c67d
-
nizune authored04b1f3bb
-
nizune authoreddf5994d3
-
nizune authoredef223f7f
-
nizune authoredda675904
-
insert authored9630673f
-
insert authored4b27d77e
-
insert authoredd0b8c6be
-
insert authoredabd40083
-
insert authored4c0b85a6
-
insert authoredb7f44546
-
insert authored0fe91662
-
insert authoredd0e56ac4
-
insert authored24e8e831
-
insert authoredb5ec58dc
-
insert authored62769c1c
-
insert authored97568864
-
insert authoredf999296a
-
insert authored1f0ceeaf
-
insert authoredfafbc523
-
Spud authored7afa4674
-
insert authored1b261729
-
insert authored99bb1b7b
-
insert authored6a632435
-
insert authored4b674fe2
-
insert authored5e329908
-
insert authored99160c03
-
insert authoredd14006a0
-
insert authored63b18dd0
-
Kamil Grabara authoredd8743414
-
insert authored670fdb5d
-
insert authored0e5d57ae
-
insert authoredb8c607f8
-
insert authored4d3f7dc7
-
insert authoreddcf5b16c
-
insert authored9cb7fe9a
Showing
- .gitignore 3 additions, 0 deletions.gitignore
- .gitmodules 3 additions, 0 deletions.gitmodules
- LICENSE 373 additions, 0 deletionsLICENSE
- ROADMAP.md 107 additions, 0 deletionsROADMAP.md
- TODO 3 additions, 0 deletionsTODO
- components/Footer.module.scss 83 additions, 0 deletionscomponents/Footer.module.scss
- components/Footer.tsx 71 additions, 0 deletionscomponents/Footer.tsx
- components/JoinLinks.module.scss 15 additions, 0 deletionscomponents/JoinLinks.module.scss
- components/JoinLinks.tsx 21 additions, 0 deletionscomponents/JoinLinks.tsx
- components/JoinPrompt.module.scss 52 additions, 0 deletionscomponents/JoinPrompt.module.scss
- components/JoinPrompt.tsx 17 additions, 0 deletionscomponents/JoinPrompt.tsx
- components/Markdown.module.scss 70 additions, 0 deletionscomponents/Markdown.module.scss
- components/Markdown.tsx 26 additions, 0 deletionscomponents/Markdown.tsx
- components/Navbar.module.scss 24 additions, 0 deletionscomponents/Navbar.module.scss
- components/Navbar.tsx 23 additions, 0 deletionscomponents/Navbar.tsx
- globals.d.ts 1 addition, 0 deletionsglobals.d.ts
- legal 1 addition, 0 deletionslegal
- next-env.d.ts 2 additions, 0 deletionsnext-env.d.ts
- package.json 25 additions, 5 deletionspackage.json
- pages/_app.tsx 8 additions, 0 deletionspages/_app.tsx
.gitmodules
0 → 100644
LICENSE
0 → 100644
ROADMAP.md
0 → 100644
TODO
0 → 100644
components/Footer.module.scss
0 → 100644
components/Footer.tsx
0 → 100644
components/JoinLinks.module.scss
0 → 100644
components/JoinLinks.tsx
0 → 100644
components/JoinPrompt.module.scss
0 → 100644
components/JoinPrompt.tsx
0 → 100644
components/Markdown.module.scss
0 → 100644
components/Markdown.tsx
0 → 100644
components/Navbar.module.scss
0 → 100644
components/Navbar.tsx
0 → 100644
globals.d.ts
0 → 100644
next-env.d.ts
0 → 100644
... | ... | @@ -5,11 +5,31 @@ |
"scripts": { | ||
"dev": "next dev", | ||
"build": "next build", | ||
"start": "next start" | ||
"start": "next start", | ||
"export": "next build && next export" | ||
}, | ||
"dependencies": { | ||
"next": "9.4.4", | ||
"react": "16.13.1", | ||
"react-dom": "16.13.1" | ||
} | ||
"next": "^10.1.3", | ||
"nextjs-redirect": "^5.0.2", | ||
"react": "^17.0.2", | ||
"react-dom": "^17.0.2" | ||
}, | ||
"devDependencies": { | ||
"@fontsource/inter": "^4.2.2", | ||
"@styled-icons/feather": "^10.18.0", | ||
"@styled-icons/simple-icons": "^10.33.0", | ||
"@types/node": "^14.14.41", | ||
"@types/react": "^17.0.3", | ||
"classnames": "^2.3.1", | ||
"markdown-it": "^12.0.6", | ||
"markdown-it-anchor": "^7.1.0", | ||
"markdown-it-checkbox": "^1.1.0", | ||
"sass": "^1.32.10", | ||
"styled-components": "^5.2.3", | ||
"typescript": "^4.2.4" | ||
}, | ||
"main": "index.js", | ||
"repository": "https://gitlab.insrt.uk/revolt/landing", | ||
"author": "Revolt Team <revolt.chat>", | ||
"license": "MIT" | ||
} |
pages/_app.tsx
0 → 100644