├── .eslintrc.json ├── .gitignore ├── README.md ├── components ├── Card │ ├── CommentCard.tsx │ ├── Discover │ │ └── DiscoverCard.tsx │ └── MostWatch │ │ ├── WatchDeskCard.tsx │ │ └── WatchMobCard.tsx ├── Layout.tsx ├── Navbar │ ├── BottomNav.tsx │ ├── DesktopNav.tsx │ ├── MobileNav.tsx │ ├── NavVideo.tsx │ └── Navbar.tsx ├── Section │ ├── CommentSection.tsx │ ├── Discover │ │ ├── DiscoverDesktop.tsx │ │ └── DiscoverMobile.tsx │ ├── DiscoverSection.tsx │ ├── MostWatched │ │ ├── MostWatchDesktop.tsx │ │ └── MostWatchMobile.tsx │ ├── MostWatchedSection.tsx │ └── Stories.tsx ├── Sidebar │ ├── BottomLinkNav.tsx │ ├── LinkSideBar.tsx │ └── SideBar.tsx ├── Story │ └── Story.tsx └── Video │ ├── Player.tsx │ └── VideoDesc.tsx ├── data ├── Person.ts └── Video.tsx ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── index.tsx └── video.tsx ├── postcss.config.js ├── public ├── favicon.ico ├── image │ ├── person │ │ ├── image 10.png │ │ ├── image 11.png │ │ ├── image 12.png │ │ ├── image 2.png │ │ └── image 4.png │ └── video │ │ ├── image 1.png │ │ ├── image 15.png │ │ ├── image 3.png │ │ ├── image 5.png │ │ ├── image 6.png │ │ ├── image 7.png │ │ └── image 8.png └── vercel.svg ├── styles └── globals.css ├── tailwind.config.js ├── tsconfig.json ├── type └── type.tsx ├── utils ├── numberReadable.ts └── useBlurData.ts └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/README.md -------------------------------------------------------------------------------- /components/Card/CommentCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/components/Card/CommentCard.tsx -------------------------------------------------------------------------------- /components/Card/Discover/DiscoverCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/components/Card/Discover/DiscoverCard.tsx -------------------------------------------------------------------------------- /components/Card/MostWatch/WatchDeskCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/components/Card/MostWatch/WatchDeskCard.tsx -------------------------------------------------------------------------------- /components/Card/MostWatch/WatchMobCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/components/Card/MostWatch/WatchMobCard.tsx -------------------------------------------------------------------------------- /components/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/components/Layout.tsx -------------------------------------------------------------------------------- /components/Navbar/BottomNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/components/Navbar/BottomNav.tsx -------------------------------------------------------------------------------- /components/Navbar/DesktopNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/components/Navbar/DesktopNav.tsx -------------------------------------------------------------------------------- /components/Navbar/MobileNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/components/Navbar/MobileNav.tsx -------------------------------------------------------------------------------- /components/Navbar/NavVideo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/components/Navbar/NavVideo.tsx -------------------------------------------------------------------------------- /components/Navbar/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/components/Navbar/Navbar.tsx -------------------------------------------------------------------------------- /components/Section/CommentSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/components/Section/CommentSection.tsx -------------------------------------------------------------------------------- /components/Section/Discover/DiscoverDesktop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/components/Section/Discover/DiscoverDesktop.tsx -------------------------------------------------------------------------------- /components/Section/Discover/DiscoverMobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/components/Section/Discover/DiscoverMobile.tsx -------------------------------------------------------------------------------- /components/Section/DiscoverSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/components/Section/DiscoverSection.tsx -------------------------------------------------------------------------------- /components/Section/MostWatched/MostWatchDesktop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/components/Section/MostWatched/MostWatchDesktop.tsx -------------------------------------------------------------------------------- /components/Section/MostWatched/MostWatchMobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/components/Section/MostWatched/MostWatchMobile.tsx -------------------------------------------------------------------------------- /components/Section/MostWatchedSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/components/Section/MostWatchedSection.tsx -------------------------------------------------------------------------------- /components/Section/Stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/components/Section/Stories.tsx -------------------------------------------------------------------------------- /components/Sidebar/BottomLinkNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/components/Sidebar/BottomLinkNav.tsx -------------------------------------------------------------------------------- /components/Sidebar/LinkSideBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/components/Sidebar/LinkSideBar.tsx -------------------------------------------------------------------------------- /components/Sidebar/SideBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/components/Sidebar/SideBar.tsx -------------------------------------------------------------------------------- /components/Story/Story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/components/Story/Story.tsx -------------------------------------------------------------------------------- /components/Video/Player.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/components/Video/Player.tsx -------------------------------------------------------------------------------- /components/Video/VideoDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/components/Video/VideoDesc.tsx -------------------------------------------------------------------------------- /data/Person.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/data/Person.ts -------------------------------------------------------------------------------- /data/Video.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/data/Video.tsx -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | reactStrictMode: true, 3 | } 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/video.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/pages/video.tsx -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/image/person/image 10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/public/image/person/image 10.png -------------------------------------------------------------------------------- /public/image/person/image 11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/public/image/person/image 11.png -------------------------------------------------------------------------------- /public/image/person/image 12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/public/image/person/image 12.png -------------------------------------------------------------------------------- /public/image/person/image 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/public/image/person/image 2.png -------------------------------------------------------------------------------- /public/image/person/image 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/public/image/person/image 4.png -------------------------------------------------------------------------------- /public/image/video/image 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/public/image/video/image 1.png -------------------------------------------------------------------------------- /public/image/video/image 15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/public/image/video/image 15.png -------------------------------------------------------------------------------- /public/image/video/image 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/public/image/video/image 3.png -------------------------------------------------------------------------------- /public/image/video/image 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/public/image/video/image 5.png -------------------------------------------------------------------------------- /public/image/video/image 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/public/image/video/image 6.png -------------------------------------------------------------------------------- /public/image/video/image 7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/public/image/video/image 7.png -------------------------------------------------------------------------------- /public/image/video/image 8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/public/image/video/image 8.png -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/tsconfig.json -------------------------------------------------------------------------------- /type/type.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/type/type.tsx -------------------------------------------------------------------------------- /utils/numberReadable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/utils/numberReadable.ts -------------------------------------------------------------------------------- /utils/useBlurData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/utils/useBlurData.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqshola/skateboard/HEAD/yarn.lock --------------------------------------------------------------------------------