Landing: Added second section and necessary assets

This commit is contained in:
Tommy
2022-01-03 21:34:11 +00:00
committed by vidvidvid
parent be4b10d5d4
commit 97acd1b4cd
2 changed files with 11 additions and 9 deletions

View File

@@ -46,13 +46,14 @@ function Game() {
Metagame is any approach to a game that transcends or operates outside of the prescribed rules of the game, uses external factors to affect the game, or goes beyond the supposed limits or environment set by the game.
<Text textAlign = "right">- From{' '}
<Link color='#79F8FB' href='#'
as='u'
fontSize="38px"
LineHeight="56px"
fontWeight="normal">
The Wiki
</Link>
<Link
color='#79F8FB' href='#'
fontSize="38px"
LineHeight="56px"
fontWeight="normal">
The Wiki
</Link>
</Text>
</Text>

View File

@@ -1,9 +1,10 @@
import React from 'react';
import Intro from '../components/landing/Intro';
import Intro from '../components/Landing/Intro';
import Game from '../components/Landing/Game';
function Landing(): JSX.Element {
return <div>
<Intro />
<Game />
</div>;
}