15 lines
288 B
TypeScript
15 lines
288 B
TypeScript
|
|
import { Documentation } from "@/components/Documentation/Documentation";
|
|
import { Metadata } from "next";
|
|
export const metadata: Metadata = {
|
|
title: "Documentation | Venus",
|
|
};
|
|
|
|
export default function Page() {
|
|
return (
|
|
<>
|
|
<Documentation/>
|
|
</>
|
|
);
|
|
};
|