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

16 lines
235 B
TypeScript
Raw Normal View History

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