You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
327 B
TypeScript
11 lines
327 B
TypeScript
// frontend/app/dashboard/page.tsx
|
|
import type { Metadata } from "next";
|
|
import "@/styles/dashboard.css";
|
|
import { DashboardClient } from "@/components/dashboard/DashboardClient";
|
|
|
|
export const metadata: Metadata = { title: "대시보드 · 아리" };
|
|
|
|
export default function DashboardPage() {
|
|
return <DashboardClient />;
|
|
}
|