aboutsummaryrefslogtreecommitdiff
path: root/src/app/kdrama/page.jsx
blob: b9cdb69a2889ad8b647680a1b01ea79a49ed075c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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 />
			<hr style={{ marginTop: 15, borderColor: "gray" }} />
			<RecentDramas />
		</div>
	);
}