13 lines
322 B
TypeScript
13 lines
322 B
TypeScript
import Hero from "../components/dashboard/hero";
|
|
import About from "../components/dashboard/about";
|
|
import Content from "../components/dashboard/content";
|
|
|
|
export default function Dashboard() {
|
|
return (
|
|
<div className="min-h-screen bg-gray-100 p-6">
|
|
<Hero />
|
|
<About />
|
|
<Content />
|
|
</div>
|
|
);
|
|
} |