svrjs-nextjs-website/app/(root)/docs/page.tsx

16 lines
235 B
TypeScript
Raw Normal View History

2024-06-22 10:30:51 +02:00
import Sidebar from "@/components/shared/Sidebar";
2024-06-15 19:24:54 +02:00
2024-06-22 10:30:51 +02:00
import { Metadata } from "next";
export const metadata: Metadata = {
title: "Docs - SVRJS",
2024-06-15 19:24:54 +02:00
};
2024-06-22 10:30:51 +02:00
export default function Page() {
return (
<>
<Sidebar />
</>
);
}