Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2020-1-CloudComputing-E
/
E_Team_KhuBox
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Authored by
Woojin Lee
2020-05-03 21:11:30 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
b6c50e2bad957b4a83c51ac8e47acc7ba28fe65a
b6c50e2b
1 parent
f6db2f5e
Customize basic layouts
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
27 deletions
khubox-front/public/index.html
khubox-front/src/layouts/Main/components/Sidebar/Sidebar.js
khubox-front/src/layouts/Main/components/Sidebar/components/Profile/Profile.js
khubox-front/src/layouts/Main/components/Topbar/Topbar.js
khubox-front/public/index.html
View file @
b6c50e2
...
...
@@ -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>
...
...
khubox-front/src/layouts/Main/components/Sidebar/Sidebar.js
View file @
b6c50e2
...
...
@@ -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
>
);
...
...
khubox-front/src/layouts/Main/components/Sidebar/components/Profile/Profile.js
View file @
b6c50e2
...
...
@@ -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
>
);
};
...
...
khubox-front/src/layouts/Main/components/Topbar/Topbar.js
View file @
b6c50e2
...
...
@@ -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
>
...
...
Please
register
or
login
to post a comment