generated from scaffold-eth/scaffold-eth-2
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5cbb62e
commit d6337d5
Showing
10 changed files
with
190 additions
and
0 deletions.
There are no files selected for viewing
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,19 @@ | ||
import { ReactElement } from "react"; | ||
import type { NextPageWithLayout } from "../_app"; | ||
import _404 from "~~/components/dash-wind/pages/protected/_404"; | ||
// import { MetaHeader } from "~~/components/MetaHeader"; | ||
import DashLayout from "~~/components/layouts/DashLayout"; | ||
|
||
{ | ||
/* <MetaHeader /> Look into MetaHeader - should it be moved to _app.tsx ??? */ | ||
} | ||
|
||
const DappDashboard: NextPageWithLayout = () => { | ||
return <_404 />; | ||
}; | ||
|
||
DappDashboard.getLayout = function getLayout(page: ReactElement) { | ||
return <DashLayout>{page}</DashLayout>; | ||
}; | ||
|
||
export default DappDashboard; |
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,19 @@ | ||
import { ReactElement } from "react"; | ||
import type { NextPageWithLayout } from "../_app"; | ||
import Blank from "~~/components/dash-wind/pages/protected/Blank"; | ||
// import { MetaHeader } from "~~/components/MetaHeader"; | ||
import DashLayout from "~~/components/layouts/DashLayout"; | ||
|
||
{ | ||
/* <MetaHeader /> Look into MetaHeader - should it be moved to _app.tsx ??? */ | ||
} | ||
|
||
const DappDashboard: NextPageWithLayout = () => { | ||
return <Blank />; | ||
}; | ||
|
||
DappDashboard.getLayout = function getLayout(page: ReactElement) { | ||
return <DashLayout>{page}</DashLayout>; | ||
}; | ||
|
||
export default DappDashboard; |
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,19 @@ | ||
import { ReactElement } from "react"; | ||
import type { NextPageWithLayout } from "../_app"; | ||
import Calendar from "~~/components/dash-wind/pages/protected/Calendar"; | ||
// import { MetaHeader } from "~~/components/MetaHeader"; | ||
import DashLayout from "~~/components/layouts/DashLayout"; | ||
|
||
{ | ||
/* <MetaHeader /> Look into MetaHeader - should it be moved to _app.tsx ??? */ | ||
} | ||
|
||
const DappDashboard: NextPageWithLayout = () => { | ||
return <Calendar />; | ||
}; | ||
|
||
DappDashboard.getLayout = function getLayout(page: ReactElement) { | ||
return <DashLayout>{page}</DashLayout>; | ||
}; | ||
|
||
export default DappDashboard; |
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,19 @@ | ||
import { ReactElement } from "react"; | ||
import type { NextPageWithLayout } from "../_app"; | ||
import Charts from "~~/components/dash-wind/pages/protected/Charts"; | ||
// import { MetaHeader } from "~~/components/MetaHeader"; | ||
import DashLayout from "~~/components/layouts/DashLayout"; | ||
|
||
{ | ||
/* <MetaHeader /> Look into MetaHeader - should it be moved to _app.tsx ??? */ | ||
} | ||
|
||
const DappDashboard: NextPageWithLayout = () => { | ||
return <Charts />; | ||
}; | ||
|
||
DappDashboard.getLayout = function getLayout(page: ReactElement) { | ||
return <DashLayout>{page}</DashLayout>; | ||
}; | ||
|
||
export default DappDashboard; |
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,19 @@ | ||
import { ReactElement } from "react"; | ||
import type { NextPageWithLayout } from "../_app"; | ||
import Integration from "~~/components/dash-wind/pages/protected/Integration"; | ||
// import { MetaHeader } from "~~/components/MetaHeader"; | ||
import DashLayout from "~~/components/layouts/DashLayout"; | ||
|
||
{ | ||
/* <MetaHeader /> Look into MetaHeader - should it be moved to _app.tsx ??? */ | ||
} | ||
|
||
const DappDashboard: NextPageWithLayout = () => { | ||
return <Integration />; | ||
}; | ||
|
||
DappDashboard.getLayout = function getLayout(page: ReactElement) { | ||
return <DashLayout>{page}</DashLayout>; | ||
}; | ||
|
||
export default DappDashboard; |
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,19 @@ | ||
import { ReactElement } from "react"; | ||
import type { NextPageWithLayout } from "../_app"; | ||
import Leads from "~~/components/dash-wind/pages/protected/Leads"; | ||
// import { MetaHeader } from "~~/components/MetaHeader"; | ||
import DashLayout from "~~/components/layouts/DashLayout"; | ||
|
||
{ | ||
/* <MetaHeader /> Look into MetaHeader - should it be moved to _app.tsx ??? */ | ||
} | ||
|
||
const DappDashboard: NextPageWithLayout = () => { | ||
return <Leads />; | ||
}; | ||
|
||
DappDashboard.getLayout = function getLayout(page: ReactElement) { | ||
return <DashLayout>{page}</DashLayout>; | ||
}; | ||
|
||
export default DappDashboard; |
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,19 @@ | ||
import { ReactElement } from "react"; | ||
import type { NextPageWithLayout } from "../_app"; | ||
import Bills from "~~/components/dash-wind/pages/protected/Bills"; | ||
// import { MetaHeader } from "~~/components/MetaHeader"; | ||
import DashLayout from "~~/components/layouts/DashLayout"; | ||
|
||
{ | ||
/* <MetaHeader /> Look into MetaHeader - should it be moved to _app.tsx ??? */ | ||
} | ||
|
||
const DappDashboard: NextPageWithLayout = () => { | ||
return <Bills />; | ||
}; | ||
|
||
DappDashboard.getLayout = function getLayout(page: ReactElement) { | ||
return <DashLayout>{page}</DashLayout>; | ||
}; | ||
|
||
export default DappDashboard; |
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,19 @@ | ||
import { ReactElement } from "react"; | ||
import type { NextPageWithLayout } from "../_app"; | ||
import ProfileSettings from "~~/components/dash-wind/pages/protected/ProfileSettings"; | ||
// import { MetaHeader } from "~~/components/MetaHeader"; | ||
import DashLayout from "~~/components/layouts/DashLayout"; | ||
|
||
{ | ||
/* <MetaHeader /> Look into MetaHeader - should it be moved to _app.tsx ??? */ | ||
} | ||
|
||
const DappDashboard: NextPageWithLayout = () => { | ||
return <ProfileSettings />; | ||
}; | ||
|
||
DappDashboard.getLayout = function getLayout(page: ReactElement) { | ||
return <DashLayout>{page}</DashLayout>; | ||
}; | ||
|
||
export default DappDashboard; |
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,19 @@ | ||
import { ReactElement } from "react"; | ||
import type { NextPageWithLayout } from "../_app"; | ||
import Team from "~~/components/dash-wind/pages/protected/Team"; | ||
// import { MetaHeader } from "~~/components/MetaHeader"; | ||
import DashLayout from "~~/components/layouts/DashLayout"; | ||
|
||
{ | ||
/* <MetaHeader /> Look into MetaHeader - should it be moved to _app.tsx ??? */ | ||
} | ||
|
||
const DappDashboard: NextPageWithLayout = () => { | ||
return <Team />; | ||
}; | ||
|
||
DappDashboard.getLayout = function getLayout(page: ReactElement) { | ||
return <DashLayout>{page}</DashLayout>; | ||
}; | ||
|
||
export default DappDashboard; |
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,19 @@ | ||
import { ReactElement } from "react"; | ||
import type { NextPageWithLayout } from "../_app"; | ||
import Transactions from "~~/components/dash-wind/pages/protected/Transactions"; | ||
// import { MetaHeader } from "~~/components/MetaHeader"; | ||
import DashLayout from "~~/components/layouts/DashLayout"; | ||
|
||
{ | ||
/* <MetaHeader /> Look into MetaHeader - should it be moved to _app.tsx ??? */ | ||
} | ||
|
||
const DappDashboard: NextPageWithLayout = () => { | ||
return <Transactions />; | ||
}; | ||
|
||
DappDashboard.getLayout = function getLayout(page: ReactElement) { | ||
return <DashLayout>{page}</DashLayout>; | ||
}; | ||
|
||
export default DappDashboard; |