aboutsummaryrefslogtreecommitdiff
path: root/src/app/web-series/page.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/web-series/page.jsx')
-rw-r--r--src/app/web-series/page.jsx28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/app/web-series/page.jsx b/src/app/web-series/page.jsx
new file mode 100644
index 0000000..63fcd05
--- /dev/null
+++ b/src/app/web-series/page.jsx
@@ -0,0 +1,28 @@
+import styles from "./styles/web-series.module.css";
+import Pages from "./components/HomePageModules";
+import SearchBar from "./components/searchBar";
+
+export default async function SeriesHomepage() {
+ return (
+ <main className={styles.main}>
+ <SearchBar />
+ <Pages type={"popular"} />
+ <hr
+ style={{
+ borderColor: "grey",
+ marginTop: 15,
+ marginBottom: -15,
+ }}
+ />
+ <Pages type={"trending"} />
+ <hr
+ style={{
+ borderColor: "grey",
+ marginTop: 15,
+ marginBottom: -15,
+ }}
+ />
+ <Pages type={"top"} />
+ </main>
+ );
+}