From 77f783fcf85e7517f7c66599986e1e536b644f91 Mon Sep 17 00:00:00 2001 From: MarconLP <13001502+MarconLP@users.noreply.github.com> Date: Mon, 10 Apr 2023 20:50:06 +0200 Subject: [PATCH] add index, videos list, and single video page --- src/pages/index.tsx | 19 +++---------------- src/pages/share/[videoId].tsx | 27 +++++++++++++++++++++++++++ src/pages/videos.tsx | 27 +++++++++++++++++++++++++++ 3 files changed, 57 insertions(+), 16 deletions(-) create mode 100644 src/pages/share/[videoId].tsx create mode 100644 src/pages/videos.tsx diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 97ec863..76458c7 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -23,24 +23,11 @@ const Home: NextPage = () => {
-

First Steps →

+

Go to Videos →

- Just the basics - Everything you need to know to set up your - database and authentication. -
- - -

Documentation →

-
- Learn more about Create T3 App, the libraries it uses, and how - to deploy it. + The entire videos collection
diff --git a/src/pages/share/[videoId].tsx b/src/pages/share/[videoId].tsx new file mode 100644 index 0000000..318998b --- /dev/null +++ b/src/pages/share/[videoId].tsx @@ -0,0 +1,27 @@ +import { type NextPage } from "next"; +import Head from "next/head"; + +import { api } from "~/utils/api"; + +const VideoList: NextPage = () => { + const hello = api.example.hello.useQuery({ text: "from tRPC" }); + + return ( + <> + + Create T3 App + + + +
+
+

+ single video page +

+
+
+ + ); +}; + +export default VideoList; \ No newline at end of file diff --git a/src/pages/videos.tsx b/src/pages/videos.tsx new file mode 100644 index 0000000..5b43001 --- /dev/null +++ b/src/pages/videos.tsx @@ -0,0 +1,27 @@ +import { type NextPage } from "next"; +import Head from "next/head"; + +import { api } from "~/utils/api"; + +const VideoList: NextPage = () => { + const hello = api.example.hello.useQuery({ text: "from tRPC" }); + + return ( + <> + + Create T3 App + + + +
+
+

+ video collection list +

+
+
+ + ); +}; + +export default VideoList; \ No newline at end of file