├── .eslintrc.json ├── .gitignore ├── LICENSE.md ├── README.md ├── app ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── globals.css ├── layout.tsx └── page.tsx ├── components ├── banner.tsx └── react-video-editor.tsx ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── public ├── next.svg └── vercel.svg ├── tailwind.config.ts ├── tsconfig.json └── types └── types.ts /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactvideoeditor/free-react-video-editor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactvideoeditor/free-react-video-editor/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactvideoeditor/free-react-video-editor/HEAD/README.md -------------------------------------------------------------------------------- /app/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactvideoeditor/free-react-video-editor/HEAD/app/android-chrome-192x192.png -------------------------------------------------------------------------------- /app/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactvideoeditor/free-react-video-editor/HEAD/app/android-chrome-512x512.png -------------------------------------------------------------------------------- /app/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactvideoeditor/free-react-video-editor/HEAD/app/apple-touch-icon.png -------------------------------------------------------------------------------- /app/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactvideoeditor/free-react-video-editor/HEAD/app/favicon-16x16.png -------------------------------------------------------------------------------- /app/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactvideoeditor/free-react-video-editor/HEAD/app/favicon-32x32.png -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactvideoeditor/free-react-video-editor/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactvideoeditor/free-react-video-editor/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactvideoeditor/free-react-video-editor/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactvideoeditor/free-react-video-editor/HEAD/app/page.tsx -------------------------------------------------------------------------------- /components/banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactvideoeditor/free-react-video-editor/HEAD/components/banner.tsx -------------------------------------------------------------------------------- /components/react-video-editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactvideoeditor/free-react-video-editor/HEAD/components/react-video-editor.tsx -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactvideoeditor/free-react-video-editor/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactvideoeditor/free-react-video-editor/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactvideoeditor/free-react-video-editor/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactvideoeditor/free-react-video-editor/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactvideoeditor/free-react-video-editor/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactvideoeditor/free-react-video-editor/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactvideoeditor/free-react-video-editor/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactvideoeditor/free-react-video-editor/HEAD/types/types.ts --------------------------------------------------------------------------------