From 020356cb5588c2fd4d12dd91d60fe082eb4c69a2 Mon Sep 17 00:00:00 2001 From: eug-vs Date: Fri, 3 Jul 2020 20:06:57 +0300 Subject: feat: create basic markup --- src/pages/HomePage/HomePage.tsx | 58 ++++++++++++++++++++++++++++++++++++----- 1 file changed, 51 insertions(+), 7 deletions(-) (limited to 'src/pages/HomePage') diff --git a/src/pages/HomePage/HomePage.tsx b/src/pages/HomePage/HomePage.tsx index 6930cc8..d0e29f5 100644 --- a/src/pages/HomePage/HomePage.tsx +++ b/src/pages/HomePage/HomePage.tsx @@ -1,18 +1,62 @@ import React, { useState } from 'react'; -import { Typography } from '@material-ui/core/'; +import { Typography, Divider, Grid, Button } from '@material-ui/core/'; import { makeStyles } from '@material-ui/core/styles'; +import { useNavigate } from '../../hooks/useNavigate'; -const useStyles = makeStyles({ -}); +const useStyles = makeStyles(theme => ({ + logo: { + width: theme.spacing(32), + height: theme.spacing(32) + }, + leftColumn: { + display: 'flex', + justifyContent: 'center' + }, + title: { + fontWeight: 'bold' + } +})); const HomePage: React.FC = () => { const classes = useStyles(); + const { navigate } = useNavigate(); - return ( - <> - Which one to choose? + const handleLetsGo = () => { + navigate('feed'); + }; - + return ( + + + logo + + + + + Which one to choose? + + +

Have you ever found yourself stuck between two options, not being able to choose any? This is exactly the problem we are going to solve!

+

Share your minor everyday uncertainties with the whole world and see what others think!

+ +
+
+ + About the project + +

+ Visit our GitHub +

+
+ + Leave feedback + + +
+
+
); }; -- cgit v1.2.3