Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions app/(home)/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
import type { ReactNode } from "react";
import { HomeLayout } from "fumadocs-ui/layouts/home";
import { baseOptions } from "@/app/layout.config";
import { Metadata } from "next";

export const metadata: Metadata = {
other: {
"go-import": [
"userclouds.com git userclouds.com git https://github.com/userclouds/sdk-golang.git",
],
},
};

export default function Layout({ children }: { children: ReactNode }) {
return (
Expand Down
7 changes: 7 additions & 0 deletions app/(meta)/authz/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
export default function AuthzPage() {
return (
<main className="flex flex-1 flex-col items-center py-16 px-4 text-4xl mx-auto">
👋
</main>
);
}
14 changes: 14 additions & 0 deletions app/(meta)/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import { Metadata } from "next";
import type { ReactNode } from "react";

export const metadata: Metadata = {
other: {
"go-import": [
"userclouds.com git https://github.com/userclouds/authzsdk-golang.git",
],
},
};

export default function Layout({ children }: { children: ReactNode }) {
return <>{children}</>;
}