Skip to content

Fix some UI design and text for look more professional #91

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 12 additions & 13 deletions src/containers/Drawer/index.jsx
Original file line number Diff line number Diff line change
@@ -1,26 +1,25 @@
import React from "react";
import PropTypes from "prop-types";
import { Button, Container } from "@material-ui/core";
import AppBar from "@material-ui/core/AppBar";
import CssBaseline from "@material-ui/core/CssBaseline";

import Drawer from "@material-ui/core/Drawer";
import Hidden from "@material-ui/core/Hidden";
import IconButton from "@material-ui/core/IconButton";

import List from "@material-ui/core/List";
import ListItem from "@material-ui/core/ListItem";
import { GitHub } from "@material-ui/icons";
import ListItemText from "@material-ui/core/ListItemText";

import MenuIcon from "@material-ui/icons/Menu";
import { makeStyles, useTheme } from "@material-ui/core/styles";
import Toolbar from "@material-ui/core/Toolbar";
import Typography from "@material-ui/core/Typography";
import { Button, Container } from "@material-ui/core";
import { makeStyles, useTheme } from "@material-ui/core/styles";

import Navigation from "../Navigation";
import { GitHub } from "@material-ui/icons";
import MenuIcon from "@material-ui/icons/Menu";
import PropTypes from "prop-types";
import React from "react";
import { Link } from "react-router-dom";
import { Components_Index } from "../Navigation";
import Navigation, { Components_Index } from "../Navigation";





const drawerWidth = 200;

@@ -92,7 +91,7 @@ function ResponsiveDrawer(props) {
<div>
<div style={{ padding: "0.5rem" }}>
<Link to="/">
<Typography variant="h5">Playground 🚀</Typography>
<Typography variant="h5">Playground</Typography>
</Link>
</div>
<List>
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import 'react-native-safe-area-context';
import App from './App';
import './index.css';
import * as serviceWorker from './serviceWorker';
import 'react-native-safe-area-context';

ReactDOM.render(<App />, document.getElementById('root'));

10 changes: 5 additions & 5 deletions src/pages/home/index.jsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { Button, Divider, Grid, Paper, Typography } from "@material-ui/core";
import React from "react";
import { Typography, Grid, Paper, Divider, Button } from "@material-ui/core";
import { Link } from "react-router-dom";

import LBannerAnimation from "./animation.jsx";


function HomePage() {
return (
<div>
@@ -32,7 +32,7 @@ function HomePage() {
</Grid>
<div style={{ width: "100%", textAlign: "center", marginBottom: "2rem" }}>
<Link to="/explore">
<Button variant="outlined" color="secondary">
<Button variant="outlined" color="primary">
<Typography variant="h6">Explore Now 🌇</Typography>
</Button>
</Link>
@@ -107,7 +107,7 @@ const FEATURES_LIST = [
{
banner: require("../../assets/SVG/design.svg"),
title: "Design",
content: "From Design -> Code.",
content: "From Design to Code.",
},
{
banner: require("../../assets/SVG/tweak.svg"),
@@ -122,6 +122,6 @@ const FEATURES_LIST = [
{
banner: require("../../assets/SVG/bootstrap.svg"),
title: "Bootstrap",
content: "Shhh... Generate code, bootstrap applications and relax.",
content: "Generate code, bootstrap applications and relax.",
},
];