Skip to content

Commit 4df02b8

Browse files
author
App Generator
committed
Improvements & Links Update
1 parent e6f5c57 commit 4df02b8

File tree

9 files changed

+42
-59
lines changed

9 files changed

+42
-59
lines changed

src/examples/Configurator/index.js

Lines changed: 4 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ function Configurator() {
175175
<SuiBox mb={2}>
176176
<SuiButton
177177
component={Link}
178-
href="https://www.creative-tim.com/product/soft-ui-dashboard-react"
178+
href="https://appseed.us/product/node-js-react-soft-dashboard"
179179
target="_blank"
180180
rel="noreferrer"
181181
buttonColor="dark"
@@ -185,25 +185,14 @@ function Configurator() {
185185
free download
186186
</SuiButton>
187187
</SuiBox>
188-
<SuiButton
189-
component={Link}
190-
href="https://www.creative-tim.com/learning-lab/react/quick-start/soft-ui-dashboard"
191-
target="_blank"
192-
rel="noreferrer"
193-
buttonColor="dark"
194-
variant="outlined"
195-
fullWidth
196-
>
197-
view documentation
198-
</SuiButton>
199188
</SuiBox>
200189
<SuiBox display="flex" justifyContent="center">
201190
<GitHubButton
202-
href="https://github.com/creativetimofficial/soft-ui-dashboard-react"
191+
href="https://github.com/app-generator/react-soft-ui-dashboard"
203192
data-icon="octicon-star"
204193
data-size="large"
205194
data-show-count="true"
206-
aria-label="Star creativetimofficial/soft-ui-dashboard-react on GitHub"
195+
aria-label="Star Soft UI Dashboard React on GitHub"
207196
>
208197
Star
209198
</GitHubButton>
@@ -228,7 +217,7 @@ function Configurator() {
228217
</SuiBox>
229218
<SuiButton
230219
component={Link}
231-
href="https://www.facebook.com/sharer/sharer.php?u=https://www.creative-tim.com/product/soft-ui-dashboard-react"
220+
href="https://www.facebook.com/sharer/sharer.php?u=https://appseed.us/product/node-js-react-soft-dashboard"
232221
target="_blank"
233222
rel="noreferrer"
234223
buttonColor="dark"

src/examples/Footer/index.js

Lines changed: 5 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ import PropTypes from "prop-types";
1818

1919
// @mui material components
2020
import Link from "@mui/material/Link";
21-
import Icon from "@mui/material/Icon";
2221

2322
// Soft UI Dashboard React components
2423
import SuiBox from "components/SuiBox";
@@ -64,19 +63,13 @@ function Footer({ company, links }) {
6463
fontSize={size.sm}
6564
px={1.5}
6665
>
67-
&copy; {new Date().getFullYear()}, made with
68-
<SuiBox fontSize={size.regular} color="text" mb={-0.5} mx={0.25}>
69-
<Icon color="inherit" fontSize="inherit">
70-
favorite
71-
</Icon>
72-
</SuiBox>
73-
by
66+
&copy;
7467
<Link href={href} target="_blank">
7568
<SuiTypography variant="button" fontWeight="medium">
7669
&nbsp;{name}&nbsp;
7770
</SuiTypography>
7871
</Link>
79-
for a better web.
72+
Coded By AppSeed.
8073
</SuiBox>
8174
<SuiBox component="ul" customClass={classes.footer_list}>
8275
{renderLinks()}
@@ -87,12 +80,10 @@ function Footer({ company, links }) {
8780

8881
// Setting default values for the props of Footer
8982
Footer.defaultProps = {
90-
company: { href: "https://www.creative-tim.com/", name: "Creative Tim" },
83+
company: { href: "https://bit.ly/3fKQZaL", name: "Creative Tim" },
9184
links: [
92-
{ href: "https://www.creative-tim.com/", name: "Creative Tim" },
93-
{ href: "https://www.creative-tim.com/presentation", name: "About Us" },
94-
{ href: "https://www.creative-tim.com/blog", name: "Blog" },
95-
{ href: "https://www.creative-tim.com/license", name: "License" },
85+
{ href: "https://appseed.us/product/node-js-react-soft-dashboard", name: "Product" },
86+
{ href: "https://appseed.us/support", name: "Support" },
9687
],
9788
};
9889

src/examples/Navbars/DefaultNavbar/index.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,6 @@ function DefaultNavbar({ transparent, light, action }) {
8686
</SuiTypography>
8787
</SuiBox>
8888
<SuiBox color="inherit" display={{ xs: "none", lg: "flex" }} m={0} p={0}>
89-
<DefaultNavbarLink icon="donut_large" name="dashboard" route="/dashboard" light={light} />
90-
<DefaultNavbarLink icon="person" name="profile" route="/profile" light={light} />
9189
<DefaultNavbarLink
9290
icon="account_circle"
9391
name="sign up"

src/examples/Sidenav/SidenavCard.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,19 +49,19 @@ function SidenavCard() {
4949
</SuiTypography>
5050
<SuiBox mb={1.5} mt={-1}>
5151
<SuiTypography variant="caption" textColor="white" fontWeight="medium">
52-
Please check our docs
52+
Access Product Page
5353
</SuiTypography>
5454
</SuiBox>
5555
<SuiButton
5656
component={Link}
57-
href="https://www.creative-tim.com/learning-lab/react/quick-start/soft-ui-dashboard"
57+
href="https://appseed.us/product/node-js-react-soft-dashboard"
5858
target="_blank"
5959
rel="noreferrer"
6060
size="small"
6161
color="default"
6262
fullWidth
6363
>
64-
documentation
64+
React Soft Dashboard
6565
</SuiButton>
6666
</SuiBox>
6767
</CardContent>

src/examples/Sidenav/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,14 +175,14 @@ function Sidenav({ routes, ...rest }) {
175175
<SuiBox mt={2}>
176176
<SuiButton
177177
component="a"
178-
href="https://creative-tim.com/product/soft-ui-dashboard-pro-react"
178+
href="https://appseed.us/full-stack/react-soft-ui-dashboard"
179179
target="_blank"
180180
rel="noreferrer"
181181
variant="gradient"
182182
buttonColor="info"
183183
fullWidth
184184
>
185-
upgrade to pro
185+
Pro Version
186186
</SuiButton>
187187
</SuiBox>
188188
</SuiBox>

src/layouts/authentication/components/BasicLayout/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ function BasicLayout({ title, description, image, children }) {
4545
routes={routes}
4646
action={{
4747
type: "external",
48-
route: "https://www.creative-tim.com/product/soft-ui-dashboard-material-ui",
48+
route: "https://appseed.us/product/node-js-react-soft-dashboard",
4949
label: "free download",
5050
}}
5151
transparent

src/layouts/authentication/components/CoverLayout/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ function CoverLayout({ color, header, title, description, image, top, children }
4545
routes={routes}
4646
action={{
4747
type: "external",
48-
route: "https://www.creative-tim.com/product/soft-ui-dashboard-material-ui",
48+
route: "https://appseed.us/product/node-js-react-soft-dashboard",
4949
label: "free download",
5050
color: "dark",
5151
}}

src/layouts/authentication/components/Footer/index.js

Lines changed: 25 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -34,33 +34,38 @@ function Footer() {
3434
<Grid item xs={10} lg={8}>
3535
<SuiBox display="flex" justifyContent="center" flexWrap="wrap" mb={3}>
3636
<SuiBox mr={{ xs: 2, lg: 3, xl: 6 }}>
37-
<SuiTypography component="a" href="#" variant="body2" textColor="secondary">
38-
Company
37+
<SuiTypography
38+
component="a"
39+
href="https://bit.ly/3fKQZaL"
40+
target="_blank"
41+
variant="body2"
42+
textColor="secondary"
43+
>
44+
Creative-Tim
3945
</SuiTypography>
4046
</SuiBox>
4147
<SuiBox mr={{ xs: 2, lg: 3, xl: 6 }}>
42-
<SuiTypography component="a" href="#" variant="body2" textColor="secondary">
43-
About Us
44-
</SuiTypography>
45-
</SuiBox>
46-
<SuiBox mr={{ xs: 0, lg: 3, xl: 6 }}>
47-
<SuiTypography component="a" href="#" variant="body2" textColor="secondary">
48-
Team
49-
</SuiTypography>
50-
</SuiBox>
51-
<SuiBox mr={{ xs: 2, lg: 3, xl: 6 }}>
52-
<SuiTypography component="a" href="#" variant="body2" textColor="secondary">
48+
<SuiTypography
49+
component="a"
50+
href="https://appseed.us/product/node-js-react-soft-dashboard"
51+
target="_blank"
52+
variant="body2"
53+
textColor="secondary"
54+
>
5355
Product
5456
</SuiTypography>
5557
</SuiBox>
56-
<SuiBox mr={{ xs: 2, lg: 3, xl: 6 }}>
57-
<SuiTypography component="a" href="#" variant="body2" textColor="secondary">
58-
Blog
58+
<SuiBox mr={{ xs: 0, lg: 3, xl: 6 }}>
59+
<SuiTypography
60+
component="a"
61+
href="https://appseed.us"
62+
target="_blank"
63+
variant="body2"
64+
textColor="secondary"
65+
>
66+
Support
5967
</SuiTypography>
6068
</SuiBox>
61-
<SuiTypography component="a" href="#" variant="body2" textColor="secondary">
62-
Pricing
63-
</SuiTypography>
6469
</SuiBox>
6570
</Grid>
6671
<Grid item xs={12} lg={8}>
@@ -84,7 +89,7 @@ function Footer() {
8489
</Grid>
8590
<Grid item xs={12} lg={8} className="text-center">
8691
<SuiTypography variant="body2" textColor="secondary">
87-
Copyright &copy; 2021 Soft by Creative Tim.
92+
&copy; Creative Tim - coded by AppSeed.
8893
</SuiTypography>
8994
</Grid>
9095
</Grid>

src/layouts/authentication/sign-in/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ function SignIn() {
9494

9595
return (
9696
<CoverLayout
97-
title="Welcome back"
97+
title="React Node Soft Dashboard"
9898
description={`${user && user.token ? "" : "Enter your email and password to sign in"}`}
9999
image={curved9}
100100
>

0 commit comments

Comments
 (0)