import React, { useState } from 'react'; import { Typography, Divider, Grid, Button } from '@material-ui/core/'; import { makeStyles } from '@material-ui/core/styles'; import { useNavigate } from '../../hooks/useNavigate'; 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(); 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
); }; export default HomePage;