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
15 changes: 15 additions & 0 deletions app/docs/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import type { Metadata } from "next";

export const metadata: Metadata = {
title: "DeCleanup Network Developer Documentation",
description: "Technical documentation for DeCleanup Rewards - Quick start guide, architecture, smart contracts, and API reference",
};

export default function DocsLayout({
children,
}: {
children: React.ReactNode;
}) {
return <>{children}</>;
}

Loading
Loading