├── .dockerignore ├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── Dockerfile ├── README.md ├── docker-compose.yml ├── docker-down.sh ├── docker-up.sh ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── public ├── ad-free.png ├── algorithm-free.png ├── app-free.png ├── by1.png ├── by2.png ├── carousel_1.png ├── carousel_2.png ├── download-black.png ├── download-white.png ├── download.png ├── next.svg ├── share-black.png ├── share-white.png ├── share.png └── vercel.svg ├── src ├── app │ ├── [...catchAll] │ │ ├── loading.tsx │ │ └── page.tsx │ ├── api │ │ └── post │ │ │ └── [id] │ │ │ └── route.ts │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ ├── page.module.scss │ ├── page.tsx │ ├── post │ │ └── [id] │ │ │ ├── page.module.scss │ │ │ └── page.tsx │ └── sd │ │ └── [subdomain] │ │ └── [...path] │ │ ├── loading.tsx │ │ └── page.tsx └── components │ ├── Carousel │ ├── index.tsx │ └── style.module.scss │ ├── Feed │ ├── index.tsx │ └── style.module.scss │ ├── HomePage │ ├── index.tsx │ └── style.module.scss │ ├── Loading.tsx │ ├── Logo.tsx │ ├── PostOptions │ ├── index.tsx │ └── style.module.scss │ └── VideoPlayer │ ├── index.tsx │ └── style.module.scss ├── tailwind.config.ts ├── tsconfig.json └── utils ├── strings ├── check-url.ts └── generate-token.ts └── types └── posts.ts /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/.dockerignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/.prettierrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker-down.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/docker-down.sh -------------------------------------------------------------------------------- /docker-up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/docker-up.sh -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/ad-free.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/public/ad-free.png -------------------------------------------------------------------------------- /public/algorithm-free.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/public/algorithm-free.png -------------------------------------------------------------------------------- /public/app-free.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/public/app-free.png -------------------------------------------------------------------------------- /public/by1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/public/by1.png -------------------------------------------------------------------------------- /public/by2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/public/by2.png -------------------------------------------------------------------------------- /public/carousel_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/public/carousel_1.png -------------------------------------------------------------------------------- /public/carousel_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/public/carousel_2.png -------------------------------------------------------------------------------- /public/download-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/public/download-black.png -------------------------------------------------------------------------------- /public/download-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/public/download-white.png -------------------------------------------------------------------------------- /public/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/public/download.png -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/share-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/public/share-black.png -------------------------------------------------------------------------------- /public/share-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/public/share-white.png -------------------------------------------------------------------------------- /public/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/public/share.png -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /src/app/[...catchAll]/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/src/app/[...catchAll]/loading.tsx -------------------------------------------------------------------------------- /src/app/[...catchAll]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/src/app/[...catchAll]/page.tsx -------------------------------------------------------------------------------- /src/app/api/post/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/src/app/api/post/[id]/route.ts -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.module.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/post/[id]/page.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/src/app/post/[id]/page.module.scss -------------------------------------------------------------------------------- /src/app/post/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/src/app/post/[id]/page.tsx -------------------------------------------------------------------------------- /src/app/sd/[subdomain]/[...path]/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/src/app/sd/[subdomain]/[...path]/loading.tsx -------------------------------------------------------------------------------- /src/app/sd/[subdomain]/[...path]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/src/app/sd/[subdomain]/[...path]/page.tsx -------------------------------------------------------------------------------- /src/components/Carousel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/src/components/Carousel/index.tsx -------------------------------------------------------------------------------- /src/components/Carousel/style.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/src/components/Carousel/style.module.scss -------------------------------------------------------------------------------- /src/components/Feed/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/src/components/Feed/index.tsx -------------------------------------------------------------------------------- /src/components/Feed/style.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/src/components/Feed/style.module.scss -------------------------------------------------------------------------------- /src/components/HomePage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/src/components/HomePage/index.tsx -------------------------------------------------------------------------------- /src/components/HomePage/style.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/src/components/HomePage/style.module.scss -------------------------------------------------------------------------------- /src/components/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/src/components/Loading.tsx -------------------------------------------------------------------------------- /src/components/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/src/components/Logo.tsx -------------------------------------------------------------------------------- /src/components/PostOptions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/src/components/PostOptions/index.tsx -------------------------------------------------------------------------------- /src/components/PostOptions/style.module.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/VideoPlayer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/src/components/VideoPlayer/index.tsx -------------------------------------------------------------------------------- /src/components/VideoPlayer/style.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/src/components/VideoPlayer/style.module.scss -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/strings/check-url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/utils/strings/check-url.ts -------------------------------------------------------------------------------- /utils/strings/generate-token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/utils/strings/generate-token.ts -------------------------------------------------------------------------------- /utils/types/posts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsHeer/offtiktok/HEAD/utils/types/posts.ts --------------------------------------------------------------------------------