2025-11-25 17:13:16 +07:00
|
|
|
import { Metadata } from 'next';
|
|
|
|
|
import Button from '@/app/ui/button'
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: 'Dashboard',
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default function Home() {
|
|
|
|
|
return (
|
|
|
|
|
<div>
|
|
|
|
|
<main>
|
|
|
|
|
<div>
|
|
|
|
|
Dashboard
|
|
|
|
|
</div>
|
|
|
|
|
<Button/>
|
|
|
|
|
</main>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|