Removed Tailwind css, moved api to v1 dir
This commit is contained in:
parent
c8f96eb694
commit
c9fba4666e
18 changed files with 195 additions and 453 deletions
app/admin
13
app/admin/page.tsx
Normal file
13
app/admin/page.tsx
Normal 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>
|
||||
)
|
||||
}
|
Reference in a new issue