Woojin Lee

Customize basic layouts

...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
13 href="https://fonts.googleapis.com/css?family=Roboto+Mono|Roboto+Slab|Roboto:300,400,500,700" 13 href="https://fonts.googleapis.com/css?family=Roboto+Mono|Roboto+Slab|Roboto:300,400,500,700"
14 rel="stylesheet" 14 rel="stylesheet"
15 /> 15 />
16 - <title>React Material Dashboard</title> 16 + <title>KHU Box</title>
17 </head> 17 </head>
18 <body> 18 <body>
19 <noscript>You need to enable JavaScript to run this app.</noscript> 19 <noscript>You need to enable JavaScript to run this app.</noscript>
......
...@@ -44,42 +44,32 @@ const Sidebar = props => { ...@@ -44,42 +44,32 @@ const Sidebar = props => {
44 44
45 const pages = [ 45 const pages = [
46 { 46 {
47 - title: 'Dashboard', 47 + title: '내 드라이브',
48 href: '/dashboard', 48 href: '/dashboard',
49 icon: <DashboardIcon /> 49 icon: <DashboardIcon />
50 }, 50 },
51 { 51 {
52 - title: 'Users', 52 + title: '공유함',
53 href: '/users', 53 href: '/users',
54 icon: <PeopleIcon /> 54 icon: <PeopleIcon />
55 }, 55 },
56 { 56 {
57 - title: 'Products', 57 + title: '최근 열어본 파일',
58 href: '/products', 58 href: '/products',
59 icon: <ShoppingBasketIcon /> 59 icon: <ShoppingBasketIcon />
60 }, 60 },
61 { 61 {
62 - title: 'Authentication', 62 + title: '휴지통',
63 href: '/sign-in', 63 href: '/sign-in',
64 icon: <LockOpenIcon /> 64 icon: <LockOpenIcon />
65 }, 65 },
66 { 66 {
67 - title: 'Typography', 67 + title: '계정',
68 - href: '/typography',
69 - icon: <TextFieldsIcon />
70 - },
71 - {
72 - title: 'Icons',
73 - href: '/icons',
74 - icon: <ImageIcon />
75 - },
76 - {
77 - title: 'Account',
78 href: '/account', 68 href: '/account',
79 icon: <AccountBoxIcon /> 69 icon: <AccountBoxIcon />
80 }, 70 },
81 { 71 {
82 - title: 'Settings', 72 + title: '설정',
83 href: '/settings', 73 href: '/settings',
84 icon: <SettingsIcon /> 74 icon: <SettingsIcon />
85 } 75 }
...@@ -103,7 +93,6 @@ const Sidebar = props => { ...@@ -103,7 +93,6 @@ const Sidebar = props => {
103 className={classes.nav} 93 className={classes.nav}
104 pages={pages} 94 pages={pages}
105 /> 95 />
106 - <UpgradePlan />
107 </div> 96 </div>
108 </Drawer> 97 </Drawer>
109 ); 98 );
......
...@@ -27,9 +27,9 @@ const Profile = props => { ...@@ -27,9 +27,9 @@ const Profile = props => {
27 const classes = useStyles(); 27 const classes = useStyles();
28 28
29 const user = { 29 const user = {
30 - name: 'Shen Zhi', 30 + name: '엄준식',
31 avatar: '/images/avatars/avatar_11.png', 31 avatar: '/images/avatars/avatar_11.png',
32 - bio: 'Brain Director' 32 + membership: 'Basic Plan'
33 }; 33 };
34 34
35 return ( 35 return (
...@@ -50,7 +50,7 @@ const Profile = props => { ...@@ -50,7 +50,7 @@ const Profile = props => {
50 > 50 >
51 {user.name} 51 {user.name}
52 </Typography> 52 </Typography>
53 - <Typography variant="body2">{user.bio}</Typography> 53 + <Typography variant="body2">{user.membership}</Typography>
54 </div> 54 </div>
55 ); 55 );
56 }; 56 };
......
...@@ -34,12 +34,7 @@ const Topbar = props => { ...@@ -34,12 +34,7 @@ const Topbar = props => {
34 > 34 >
35 <Toolbar> 35 <Toolbar>
36 <RouterLink to="/"> 36 <RouterLink to="/">
37 - <h1>KhuBox</h1> 37 + <h1>KHU Box</h1>
38 - {/*
39 - <img
40 - alt="Logo"
41 - src="/images/logos/logo--white.svg"
42 - />*/}
43 </RouterLink> 38 </RouterLink>
44 <div className={classes.flexGrow} /> 39 <div className={classes.flexGrow} />
45 <Hidden mdDown> 40 <Hidden mdDown>
......