feat(envelope-generator-react-ui): init
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
import { _posts } from 'src/_mock';
|
||||
import { CONFIG } from 'src/config-global';
|
||||
|
||||
import { BlogView } from 'src/sections/blog/view';
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
export default function Page() {
|
||||
return (
|
||||
<>
|
||||
<title>{`Blog - ${CONFIG.appName}`}</title>
|
||||
|
||||
<BlogView posts={_posts} />
|
||||
</>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
import { CONFIG } from 'src/config-global';
|
||||
|
||||
import { OverviewAnalyticsView as DashboardView } from 'src/sections/overview/view';
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
export default function Page() {
|
||||
return (
|
||||
<>
|
||||
<title>{`Dashboard - ${CONFIG.appName}`}</title>
|
||||
<meta
|
||||
name="description"
|
||||
content="The starting point for your next project with Minimal UI Kit, built on the newest version of Material-UI ©, ready to be customized to your style"
|
||||
/>
|
||||
<meta name="keywords" content="react,material,kit,application,dashboard,admin,template" />
|
||||
|
||||
<DashboardView />
|
||||
</>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
import { CONFIG } from 'src/config-global';
|
||||
|
||||
import { NotFoundView } from 'src/sections/error';
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
export default function Page() {
|
||||
return (
|
||||
<>
|
||||
<title>{`404 page not found! | Error - ${CONFIG.appName}`}</title>
|
||||
|
||||
<NotFoundView />
|
||||
</>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
import { CONFIG } from 'src/config-global';
|
||||
|
||||
import { ProductsView } from 'src/sections/product/view';
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
export default function Page() {
|
||||
return (
|
||||
<>
|
||||
<title>{`Products - ${CONFIG.appName}`}</title>
|
||||
|
||||
<ProductsView />
|
||||
</>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
import { CONFIG } from 'src/config-global';
|
||||
|
||||
import { SignInView } from 'src/sections/auth';
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
export default function Page() {
|
||||
return (
|
||||
<>
|
||||
<title>{`Sign in - ${CONFIG.appName}`}</title>
|
||||
|
||||
<SignInView />
|
||||
</>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
import { CONFIG } from 'src/config-global';
|
||||
|
||||
import { UserView } from 'src/sections/user/view';
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
export default function Page() {
|
||||
return (
|
||||
<>
|
||||
<title>{`Users - ${CONFIG.appName}`}</title>
|
||||
|
||||
<UserView />
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user