Woojin Lee

Customize basic layouts

......@@ -13,7 +13,7 @@
href="https://fonts.googleapis.com/css?family=Roboto+Mono|Roboto+Slab|Roboto:300,400,500,700"
rel="stylesheet"
/>
<title>React Material Dashboard</title>
<title>KHU Box</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
......
......@@ -44,42 +44,32 @@ const Sidebar = props => {
const pages = [
{
title: 'Dashboard',
title: '내 드라이브',
href: '/dashboard',
icon: <DashboardIcon />
},
{
title: 'Users',
title: '공유함',
href: '/users',
icon: <PeopleIcon />
},
{
title: 'Products',
title: '최근 열어본 파일',
href: '/products',
icon: <ShoppingBasketIcon />
},
{
title: 'Authentication',
title: '휴지통',
href: '/sign-in',
icon: <LockOpenIcon />
},
{
title: 'Typography',
href: '/typography',
icon: <TextFieldsIcon />
},
{
title: 'Icons',
href: '/icons',
icon: <ImageIcon />
},
{
title: 'Account',
title: '계정',
href: '/account',
icon: <AccountBoxIcon />
},
{
title: 'Settings',
title: '설정',
href: '/settings',
icon: <SettingsIcon />
}
......@@ -103,7 +93,6 @@ const Sidebar = props => {
className={classes.nav}
pages={pages}
/>
<UpgradePlan />
</div>
</Drawer>
);
......
......@@ -27,9 +27,9 @@ const Profile = props => {
const classes = useStyles();
const user = {
name: 'Shen Zhi',
name: '엄준식',
avatar: '/images/avatars/avatar_11.png',
bio: 'Brain Director'
membership: 'Basic Plan'
};
return (
......@@ -50,7 +50,7 @@ const Profile = props => {
>
{user.name}
</Typography>
<Typography variant="body2">{user.bio}</Typography>
<Typography variant="body2">{user.membership}</Typography>
</div>
);
};
......
......@@ -34,12 +34,7 @@ const Topbar = props => {
>
<Toolbar>
<RouterLink to="/">
<h1>KhuBox</h1>
{/*
<img
alt="Logo"
src="/images/logos/logo--white.svg"
/>*/}
<h1>KHU Box</h1>
</RouterLink>
<div className={classes.flexGrow} />
<Hidden mdDown>
......