diff options
author | lonkaars <l.leblansch@gmail.com> | 2021-04-08 17:55:14 +0200 |
---|---|---|
committer | lonkaars <l.leblansch@gmail.com> | 2021-04-08 17:55:14 +0200 |
commit | e1a6f10bad6c235c4538a56408340fdc8bd682ab (patch) | |
tree | d1b373fe2d28433ca17fcd1a9625399682dec536 /pages/index.tsx | |
parent | 15df740b1e1ac31a9bb9a2f3a731b693182ebcb9 (diff) |
footer in code +/ css samples
Diffstat (limited to 'pages/index.tsx')
-rw-r--r-- | pages/index.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pages/index.tsx b/pages/index.tsx index dfb14e6..9bfe2a7 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -2,6 +2,7 @@ import { CSSProperties, useState, useEffect, useContext } from 'react'; import axios from 'axios'; import { userInfo, userGameTotals, userGames } from '../api/api'; import { SocketContext } from '../components/socketContext'; +import { Footer } from '../components/footer'; import { NavBar } from '../components/navbar'; import { CenteredPage, PageTitle } from '../components/page'; @@ -194,6 +195,7 @@ export default function HomePage() { <p style={{ margin: "6px 0" }}>Chess.com heeft heel veel troep waar niemand naar kijkt</p> </Vierkant> </CenteredPage> + <Footer/> </div> } |