first commit

This commit is contained in:
“dongming”
2025-12-19 12:19:14 +08:00
commit 400b1177c0
145 changed files with 5939 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import { Documentation } from "@/components/Documentation/Documentation";
import { Metadata } from "next";
export const metadata: Metadata = {
title: "Documentation | Venus",
};
export default function Page() {
return (
<>
<Documentation/>
</>
);
};