Skip to content

Commit 9adea82

Browse files
Change page titles (#85)
1 parent 51f3bfe commit 9adea82

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

src/pages/Account.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import AccountProfileDetails from 'src/components/account/AccountProfileDetails'
1010
const Account = () => (
1111
<>
1212
<Helmet>
13-
<title>Account</title>
13+
<title>Account | Material Kit</title>
1414
</Helmet>
1515
<Box
1616
sx={{

src/pages/CustomerList.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import customers from 'src/__mocks__/customers';
77
const CustomerList = () => (
88
<>
99
<Helmet>
10-
<title>Customers</title>
10+
<title>Customers | Material Kit</title>
1111
</Helmet>
1212
<Box
1313
sx={{

src/pages/Dashboard.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import TrafficByDevice from 'src/components/dashboard//TrafficByDevice';
1616
const Dashboard = () => (
1717
<>
1818
<Helmet>
19-
<title>Dashboard</title>
19+
<title>Dashboard | Material Kit</title>
2020
</Helmet>
2121
<Box
2222
sx={{

src/pages/Login.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const Login = () => {
2020
return (
2121
<>
2222
<Helmet>
23-
<title>Login</title>
23+
<title>Login | Material Kit</title>
2424
</Helmet>
2525
<Box
2626
sx={{

src/pages/NotFound.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
const NotFound = () => (
99
<>
1010
<Helmet>
11-
<title>404</title>
11+
<title>404 | Material Kit</title>
1212
</Helmet>
1313
<Box
1414
sx={{

src/pages/ProductList.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import products from 'src/__mocks__/products';
1212
const ProductList = () => (
1313
<>
1414
<Helmet>
15-
<title>Products</title>
15+
<title>Products | Material Kit</title>
1616
</Helmet>
1717
<Box
1818
sx={{

src/pages/Register.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const Register = () => {
1919
return (
2020
<>
2121
<Helmet>
22-
<title>Register</title>
22+
<title>Register | Material Kit</title>
2323
</Helmet>
2424
<Box
2525
sx={{

src/pages/Settings.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import SettingsPassword from 'src/components/settings/SettingsPassword';
66
const SettingsView = () => (
77
<>
88
<Helmet>
9-
<title>Settings</title>
9+
<title>Settings | Material Kit</title>
1010
</Helmet>
1111
<Box
1212
sx={{

0 commit comments

Comments
 (0)