feat: update application name and user references to "Umschläge"

- Changed application name from "Minimal UI" to "SignFlow" in config-global.ts
- Updated navigation titles and paths from "User" to "Umschläge" in nav-config-dashboard.tsx
- Modified page title in user.tsx to reflect "Umschläge"
- Changed placeholder text in user-table-toolbar.tsx from "Search user..." to "Nach Umschlag suchen..."
- Updated headings and button labels in user-view.tsx to use "Umschläge" and "Neuer Umschlag"
- Commented out NavUpgrade component in nav.tsx
- Removed unused product and blog navigation items in nav-config-dashboard.tsx
- Added envelope-service.ts to handle envelope data with a basic structure
- Updated yarn.lock with dependency version changes
This commit is contained in:
OlgunR
2025-07-24 09:53:48 +02:00
parent cce240125d
commit 4b3c5907ae
10 changed files with 199 additions and 228 deletions

View File

@@ -8,6 +8,6 @@ export type ConfigValue = {
};
export const CONFIG: ConfigValue = {
appName: 'Minimal UI',
appName: 'SignFlow',
appVersion: packageJson.version,
};

View File

@@ -188,7 +188,7 @@ export function NavContent({ data, slots, workspaces, sx }: NavContentProps) {
{slots?.bottomArea}
<NavUpgrade />
{/* <NavUpgrade /> */}
</>
);
}

View File

@@ -19,25 +19,25 @@ export const navData = [
icon: icon('ic-analytics'),
},
{
title: 'User',
title: 'Umschläge',
path: '/user',
icon: icon('ic-user'),
},
{
title: 'Product',
path: '/products',
icon: icon('ic-cart'),
info: (
<Label color="error" variant="inverted">
+3
</Label>
),
},
{
title: 'Blog',
path: '/blog',
icon: icon('ic-blog'),
},
// {
// title: 'Product',
// path: '/products',
// icon: icon('ic-cart'),
// info: (
// <Label color="error" variant="inverted">
// +3
// </Label>
// ),
// },
// {
// title: 'Blog',
// path: '/blog',
// icon: icon('ic-blog'),
// },
{
title: 'Sign in',
path: '/sign-in',

View File

@@ -7,7 +7,7 @@ import { UserView } from 'src/sections/user/view';
export default function Page() {
return (
<>
<title>{`Users - ${CONFIG.appName}`}</title>
<title>{`Umschläge - ${CONFIG.appName}`}</title>
<UserView />
</>

View File

@@ -38,7 +38,7 @@ export function UserTableToolbar({ numSelected, filterName, onFilterName }: User
fullWidth
value={filterName}
onChange={onFilterName}
placeholder="Search user..."
placeholder="Nach Umschlag suchen..."
startAdornment={
<InputAdornment position="start">
<Iconify width={20} icon="eva:search-fill" sx={{ color: 'text.disabled' }} />

View File

@@ -49,14 +49,14 @@ export function UserView() {
}}
>
<Typography variant="h4" sx={{ flexGrow: 1 }}>
Users
Umschläge
</Typography>
<Button
variant="contained"
color="inherit"
startIcon={<Iconify icon="mingcute:add-line" />}
>
New user
Neuer Umschlag
</Button>
</Box>
@@ -86,10 +86,10 @@ export function UserView() {
)
}
headLabel={[
{ id: 'name', label: 'Name' },
{ id: 'company', label: 'Company' },
{ id: 'role', label: 'Role' },
{ id: 'isVerified', label: 'Verified', align: 'center' },
{ id: 'name', label: 'Titel' },
{ id: 'company', label: 'Sender' },
{ id: 'role', label: 'Position' },
{ id: 'isVerified', label: 'Signiert', align: 'center' },
{ id: 'status', label: 'Status' },
{ id: '' },
]}

View File

@@ -0,0 +1,8 @@
export type Envelope = {
id: number,
title: string
}
export default function getEnvelopes(): Promise<Envelope[]> {
return Promise.resolve([])
}