import React, { useState } from 'react'; import { Typography, Divider, Grid, Button, Link } from '@material-ui/core/'; import { makeStyles } from '@material-ui/core/styles'; import TrendingUpIcon from '@material-ui/icons/TrendingUp'; 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

The project is written in Typescript and features React , Feathers , and Material-UI . It is currently open-source and you can visit our GitHub (make sure to star our repositories)!

We encourage any developer to check it out. Feel free to open issues and create Pull Requests!

All the development process is being tracked on the KanBan board (thanks GitHub). You can always check it to see what is the current state of the project.

Leave feedback
); }; export default HomePage;