1
0
Fork 0

Removed Tailwind css, moved api to v1 dir

This commit is contained in:
Neshura 2023-06-08 21:21:34 +02:00
parent c8f96eb694
commit c9fba4666e
Signed by: Neshura
GPG key ID: B6983AAA6B9A7A6C
18 changed files with 195 additions and 453 deletions
app/admin

13
app/admin/page.tsx Normal file
View file

@ -0,0 +1,13 @@
'use client';
import '@/app/globals.css';
import Link from 'next/link';
export default function Home() {
return (
<main>
<div>
<p>Admin Menu goes here at some point</p>
</div>
</main>
)
}