-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Register Session connector * Refactor nextapp for wasm * Approve policies on register session * fix: expiration time for session account * Update deps --------- Co-authored-by: Nasr <[email protected]>
- Loading branch information
Showing
39 changed files
with
682 additions
and
562 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
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
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 |
---|---|---|
@@ -1,22 +1,20 @@ | ||
import { Providers } from "components/providers"; | ||
import { ReactNode } from "react"; | ||
import { Metadata } from "next"; | ||
import { PropsWithChildren } from "react"; | ||
|
||
import "./globals.css"; | ||
import { Providers } from "components/providers"; | ||
|
||
export const metadata: Metadata = { | ||
title: "Cartridge Controller", | ||
description: "Cartridge Controller Example", | ||
}; | ||
|
||
export default function RootLayout({ children }: PropsWithChildren) { | ||
export default function RootLayout({ children }: { children: ReactNode }) { | ||
return ( | ||
<html lang="en" suppressHydrationWarning> | ||
<body className="bg-background text-foreground"> | ||
<body> | ||
<Providers>{children}</Providers> | ||
</body> | ||
</html> | ||
); | ||
} | ||
|
||
export const metadata: Metadata = { | ||
title: "Cartridge Controller - Example (Next.js)", | ||
icons: { | ||
icon: "favicon.ico", | ||
}, | ||
}; |
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,11 @@ | ||
import { FC } from "react"; | ||
|
||
const NotFound: FC = () => { | ||
return ( | ||
<div className="flex min-h-screen flex-col items-center justify-center"> | ||
<h1>404 - Page Not Found</h1> | ||
</div> | ||
); | ||
}; | ||
|
||
export default NotFound; |
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.