Initial setup of the Neptune frontend project, including Dockerfile, environment files, TypeScript configuration, and essential components. Added basic page structures for dashboard and wallet, and configured Tailwind CSS and postcss.
10 lines
130 B
TypeScript
10 lines
130 B
TypeScript
export default function AdminPage() {
|
|
return (
|
|
<>
|
|
<section>
|
|
<h1>Welcome to the Dashboard</h1>
|
|
</section>
|
|
</>
|
|
);
|
|
}
|