File tree Expand file tree Collapse file tree 3 files changed +30
-0
lines changed Expand file tree Collapse file tree 3 files changed +30
-0
lines changed Original file line number Diff line number Diff line change 11import type { ReactNode } from "react" ;
22import { HomeLayout } from "fumadocs-ui/layouts/home" ;
33import { baseOptions } from "@/app/layout.config" ;
4+ import { Metadata } from "next" ;
5+
6+ export const metadata : Metadata = {
7+ other : {
8+ "go-import" : [
9+ "userclouds.com git userclouds.com git https://github.com/userclouds/sdk-golang.git" ,
10+ ] ,
11+ } ,
12+ } ;
413
514export default function Layout ( { children } : { children : ReactNode } ) {
615 return (
Original file line number Diff line number Diff line change 1+ export default function AuthzPage ( ) {
2+ return (
3+ < main className = "flex flex-1 flex-col items-center py-16 px-4 text-4xl mx-auto" >
4+ 👋
5+ </ main >
6+ ) ;
7+ }
Original file line number Diff line number Diff line change 1+ import { Metadata } from "next" ;
2+ import type { ReactNode } from "react" ;
3+
4+ export const metadata : Metadata = {
5+ other : {
6+ "go-import" : [
7+ "userclouds.com git https://github.com/userclouds/authzsdk-golang.git" ,
8+ ] ,
9+ } ,
10+ } ;
11+
12+ export default function Layout ( { children } : { children : ReactNode } ) {
13+ return < > { children } </ > ;
14+ }
You can’t perform that action at this time.
0 commit comments