import Creeper from "@/components/creeper"; import { minecrafter } from "@/font/fonts"; import { cn } from "@/lib/utils"; import { Metadata } from "next"; import Link from "next/link"; /** * Page metadata. */ export const metadata: Metadata = { title: "Docs", }; /** * The documentation page. * * @returns the page jsx */ const DocsPage = (): JSX.Element => (
{/* Creeper */}
{/* Header */}

Documentation

{/* Content */}

This page is still under construction, however we do have a{" "} Wiki !

); export default DocsPage;