-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #90 from SmartDev0910/dev
Dev
- Loading branch information
Showing
85 changed files
with
6,311 additions
and
244 deletions.
There are no files selected for viewing
41 changes: 41 additions & 0 deletions
41
sera_frontend_pro/pages/applications/auth-parties/index.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
import Head from 'next/head'; | ||
import SidebarLayout from '@/layouts/SidebarLayout'; | ||
import PageHeader from '@/content/Applications/AuthParties/PageHeader'; | ||
import PageTitleWrapper from '@/components/PageTitleWrapper'; | ||
import { Grid, Container } from '@mui/material'; | ||
import Footer from '@/components/Footer'; | ||
|
||
import RecentOrders from '@/content/Applications/AuthParties/RecentOrders'; | ||
|
||
function ApplicationsTransactions() { | ||
return ( | ||
<> | ||
<Head> | ||
<title>Authorized Parties - Applications</title> | ||
</Head> | ||
<PageTitleWrapper> | ||
<PageHeader /> | ||
</PageTitleWrapper> | ||
<Container maxWidth="lg"> | ||
<Grid | ||
container | ||
direction="row" | ||
justifyContent="center" | ||
alignItems="stretch" | ||
spacing={3} | ||
> | ||
<Grid item xs={12}> | ||
<RecentOrders /> | ||
</Grid> | ||
</Grid> | ||
</Container> | ||
<Footer /> | ||
</> | ||
); | ||
} | ||
|
||
ApplicationsTransactions.getLayout = (page) => ( | ||
<SidebarLayout>{page}</SidebarLayout> | ||
); | ||
|
||
export default ApplicationsTransactions; |
41 changes: 41 additions & 0 deletions
41
sera_frontend_pro/pages/applications/business-ecosystem/index.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
import Head from 'next/head'; | ||
import SidebarLayout from '@/layouts/SidebarLayout'; | ||
import PageHeader from '@/content/Applications/BusinessEcosystem/PageHeader'; | ||
import PageTitleWrapper from '@/components/PageTitleWrapper'; | ||
import { Grid, Container } from '@mui/material'; | ||
import Footer from '@/components/Footer'; | ||
|
||
import RecentOrders from '@/content/Applications/BusinessEcosystem/RecentOrders'; | ||
|
||
function ApplicationsTransactions() { | ||
return ( | ||
<> | ||
<Head> | ||
<title>BusinessEcosystem - Applications</title> | ||
</Head> | ||
<PageTitleWrapper> | ||
<PageHeader /> | ||
</PageTitleWrapper> | ||
<Container maxWidth="lg"> | ||
<Grid | ||
container | ||
direction="row" | ||
justifyContent="center" | ||
alignItems="stretch" | ||
spacing={3} | ||
> | ||
<Grid item xs={12}> | ||
<RecentOrders /> | ||
</Grid> | ||
</Grid> | ||
</Container> | ||
<Footer /> | ||
</> | ||
); | ||
} | ||
|
||
ApplicationsTransactions.getLayout = (page) => ( | ||
<SidebarLayout>{page}</SidebarLayout> | ||
); | ||
|
||
export default ApplicationsTransactions; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
import Head from 'next/head'; | ||
import SidebarLayout from '@/layouts/SidebarLayout'; | ||
import PageHeader from '@/content/Applications/Contracts/PageHeader'; | ||
import PageTitleWrapper from '@/components/PageTitleWrapper'; | ||
import { Grid, Container } from '@mui/material'; | ||
import Footer from '@/components/Footer'; | ||
|
||
import RecentOrders from '@/content/Applications/Contracts/RecentOrders'; | ||
|
||
function ApplicationsTransactions() { | ||
return ( | ||
<> | ||
<Head> | ||
<title>Contracts - Applications</title> | ||
</Head> | ||
<PageTitleWrapper> | ||
<PageHeader /> | ||
</PageTitleWrapper> | ||
<Container maxWidth="lg"> | ||
<Grid | ||
container | ||
direction="row" | ||
justifyContent="center" | ||
alignItems="stretch" | ||
spacing={3} | ||
> | ||
<Grid item xs={12}> | ||
<RecentOrders /> | ||
</Grid> | ||
</Grid> | ||
</Container> | ||
<Footer /> | ||
</> | ||
); | ||
} | ||
|
||
ApplicationsTransactions.getLayout = (page) => ( | ||
<SidebarLayout>{page}</SidebarLayout> | ||
); | ||
|
||
export default ApplicationsTransactions; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
import Head from 'next/head'; | ||
import SidebarLayout from '@/layouts/SidebarLayout'; | ||
import PageHeader from '@/content/Applications/Invoices/PageHeader'; | ||
import PageTitleWrapper from '@/components/PageTitleWrapper'; | ||
import { Grid, Container } from '@mui/material'; | ||
import Footer from '@/components/Footer'; | ||
|
||
import RecentOrders from '@/content/Applications/Invoices/RecentOrders'; | ||
|
||
function ApplicationsTransactions() { | ||
return ( | ||
<> | ||
<Head> | ||
<title>Invoices - Applications</title> | ||
</Head> | ||
<PageTitleWrapper> | ||
<PageHeader /> | ||
</PageTitleWrapper> | ||
<Container maxWidth="lg"> | ||
<Grid | ||
container | ||
direction="row" | ||
justifyContent="center" | ||
alignItems="stretch" | ||
spacing={3} | ||
> | ||
<Grid item xs={12}> | ||
<RecentOrders /> | ||
</Grid> | ||
</Grid> | ||
</Container> | ||
<Footer /> | ||
</> | ||
); | ||
} | ||
|
||
ApplicationsTransactions.getLayout = (page) => ( | ||
<SidebarLayout>{page}</SidebarLayout> | ||
); | ||
|
||
export default ApplicationsTransactions; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
import Head from 'next/head'; | ||
import SidebarLayout from '@/layouts/SidebarLayout'; | ||
import PageHeader from '@/content/Applications/Materials/PageHeader'; | ||
import PageTitleWrapper from '@/components/PageTitleWrapper'; | ||
import { Grid, Container } from '@mui/material'; | ||
import Footer from '@/components/Footer'; | ||
|
||
import RecentOrders from '@/content/Applications/Materials/RecentOrders'; | ||
|
||
function ApplicationsTransactions() { | ||
return ( | ||
<> | ||
<Head> | ||
<title>Materials - Applications</title> | ||
</Head> | ||
<PageTitleWrapper> | ||
<PageHeader /> | ||
</PageTitleWrapper> | ||
<Container maxWidth="lg"> | ||
<Grid | ||
container | ||
direction="row" | ||
justifyContent="center" | ||
alignItems="stretch" | ||
spacing={3} | ||
> | ||
<Grid item xs={12}> | ||
<RecentOrders /> | ||
</Grid> | ||
</Grid> | ||
</Container> | ||
<Footer /> | ||
</> | ||
); | ||
} | ||
|
||
ApplicationsTransactions.getLayout = (page) => ( | ||
<SidebarLayout>{page}</SidebarLayout> | ||
); | ||
|
||
export default ApplicationsTransactions; |
41 changes: 41 additions & 0 deletions
41
sera_frontend_pro/pages/applications/purchase-orders/index.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
import Head from 'next/head'; | ||
import SidebarLayout from '@/layouts/SidebarLayout'; | ||
import PageHeader from '@/content/Applications/PurchaseOrders/PageHeader'; | ||
import PageTitleWrapper from '@/components/PageTitleWrapper'; | ||
import { Grid, Container } from '@mui/material'; | ||
import Footer from '@/components/Footer'; | ||
|
||
import RecentOrders from '@/content/Applications/PurchaseOrders/RecentOrders'; | ||
|
||
function ApplicationsTransactions() { | ||
return ( | ||
<> | ||
<Head> | ||
<title>PurhcaseOrders - Applications</title> | ||
</Head> | ||
<PageTitleWrapper> | ||
<PageHeader /> | ||
</PageTitleWrapper> | ||
<Container maxWidth="lg"> | ||
<Grid | ||
container | ||
direction="row" | ||
justifyContent="center" | ||
alignItems="stretch" | ||
spacing={3} | ||
> | ||
<Grid item xs={12}> | ||
<RecentOrders /> | ||
</Grid> | ||
</Grid> | ||
</Container> | ||
<Footer /> | ||
</> | ||
); | ||
} | ||
|
||
ApplicationsTransactions.getLayout = (page) => ( | ||
<SidebarLayout>{page}</SidebarLayout> | ||
); | ||
|
||
export default ApplicationsTransactions; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 41 additions & 0 deletions
41
sera_frontend_pro/pages/core-services/document-management/index.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
import Head from 'next/head'; | ||
import SidebarLayout from '@/layouts/SidebarLayout'; | ||
import PageHeader from '@/content/Management/Transactions/PageHeader'; | ||
import PageTitleWrapper from '@/components/PageTitleWrapper'; | ||
import { Grid, Container } from '@mui/material'; | ||
import Footer from '@/components/Footer'; | ||
|
||
import RecentOrders from '@/content/Management/Transactions/RecentOrders'; | ||
|
||
function ApplicationsTransactions() { | ||
return ( | ||
<> | ||
<Head> | ||
<title>Transactions - Applications</title> | ||
</Head> | ||
<PageTitleWrapper> | ||
<PageHeader /> | ||
</PageTitleWrapper> | ||
<Container maxWidth="lg"> | ||
<Grid | ||
container | ||
direction="row" | ||
justifyContent="center" | ||
alignItems="stretch" | ||
spacing={3} | ||
> | ||
<Grid item xs={12}> | ||
<RecentOrders /> | ||
</Grid> | ||
</Grid> | ||
</Container> | ||
<Footer /> | ||
</> | ||
); | ||
} | ||
|
||
ApplicationsTransactions.getLayout = (page) => ( | ||
<SidebarLayout>{page}</SidebarLayout> | ||
); | ||
|
||
export default ApplicationsTransactions; |
41 changes: 41 additions & 0 deletions
41
sera_frontend_pro/pages/core-services/shipment-management/index.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
import Head from 'next/head'; | ||
import SidebarLayout from '@/layouts/SidebarLayout'; | ||
import PageHeader from '@/content/Management/Transactions/PageHeader'; | ||
import PageTitleWrapper from '@/components/PageTitleWrapper'; | ||
import { Grid, Container } from '@mui/material'; | ||
import Footer from '@/components/Footer'; | ||
|
||
import RecentOrders from '@/content/Management/Transactions/RecentOrders'; | ||
|
||
function ApplicationsTransactions() { | ||
return ( | ||
<> | ||
<Head> | ||
<title>Transactions - Applications</title> | ||
</Head> | ||
<PageTitleWrapper> | ||
<PageHeader /> | ||
</PageTitleWrapper> | ||
<Container maxWidth="lg"> | ||
<Grid | ||
container | ||
direction="row" | ||
justifyContent="center" | ||
alignItems="stretch" | ||
spacing={3} | ||
> | ||
<Grid item xs={12}> | ||
<RecentOrders /> | ||
</Grid> | ||
</Grid> | ||
</Container> | ||
<Footer /> | ||
</> | ||
); | ||
} | ||
|
||
ApplicationsTransactions.getLayout = (page) => ( | ||
<SidebarLayout>{page}</SidebarLayout> | ||
); | ||
|
||
export default ApplicationsTransactions; |
Oops, something went wrong.