feat(envelope-generator-react-ui): init

This commit is contained in:
2025-07-21 15:13:16 +02:00
parent 286e17a900
commit cce240125d
242 changed files with 18884 additions and 4 deletions

View File

@@ -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} />
</>
);
}

View File

@@ -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 />
</>
);
}

View File

@@ -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 />
</>
);
}

View File

@@ -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 />
</>
);
}

View File

@@ -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 />
</>
);
}

View File

@@ -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 />
</>
);
}