2025-04-27 05:28:37 +07:00
|
|
|
import { Header } from './_components/header';
|
2025-04-26 22:38:28 +07:00
|
|
|
|
2025-04-26 21:13:19 +07:00
|
|
|
export default function Page() {
|
2025-04-26 22:38:28 +07:00
|
|
|
return (
|
2025-04-27 05:28:37 +07:00
|
|
|
<div className="flex min-h-screen flex-col">
|
|
|
|
|
<Header />
|
|
|
|
|
<main className="flex-1"></main>
|
|
|
|
|
</div>
|
2025-04-26 22:38:28 +07:00
|
|
|
);
|
2025-04-26 20:32:58 +07:00
|
|
|
}
|