aboutsummaryrefslogtreecommitdiff
path: root/src/app/kdrama/page.jsx
blob: 44f8eb9e27cd56d9c703651601640995b8c6153d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import styles from "./styles/kdrama.module.css";
import PopularDramas from "./components/popular";
import RecentDramas from "./components/recent";
import DramaSearch from "./components/search";

export default async function Kdrama() {
	return (
		<div className={styles.Main}>
			<DramaSearch />
			<PopularDramas />
			<RecentDramas />
		</div>
	);
}