├── .DS_Store ├── .github └── FUNDING.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── index.html ├── netlify.toml ├── package.json ├── postcss.config.cjs ├── public └── readmi.svg ├── src ├── .DS_Store ├── App.tsx ├── assets │ ├── .DS_Store │ └── demo.png ├── components │ ├── Navbar │ │ └── index.tsx │ ├── NotFound.tsx │ ├── SEO │ │ └── index.tsx │ └── sections │ │ └── index.tsx ├── context │ └── editorContext.tsx ├── index.css ├── main.tsx ├── pages │ ├── Editor │ │ └── index.tsx │ ├── GenerateReadme │ │ └── index.tsx │ ├── LandingPage.tsx │ ├── Layout.tsx │ └── Templates │ │ └── index.tsx ├── utils │ ├── sections │ │ └── index.ts │ ├── template__files │ │ ├── Template-1.ts │ │ ├── Template-2.ts │ │ ├── Template-3.ts │ │ └── index.ts │ └── types │ │ └── index.ts └── vite-env.d.ts ├── tailwind.config.cjs ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starc007/readmi/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starc007/readmi/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starc007/readmi/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starc007/readmi/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starc007/readmi/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starc007/readmi/HEAD/index.html -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starc007/readmi/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starc007/readmi/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starc007/readmi/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /public/readmi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starc007/readmi/HEAD/public/readmi.svg -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starc007/readmi/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starc007/readmi/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starc007/readmi/HEAD/src/assets/.DS_Store -------------------------------------------------------------------------------- /src/assets/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starc007/readmi/HEAD/src/assets/demo.png -------------------------------------------------------------------------------- /src/components/Navbar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starc007/readmi/HEAD/src/components/Navbar/index.tsx -------------------------------------------------------------------------------- /src/components/NotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starc007/readmi/HEAD/src/components/NotFound.tsx -------------------------------------------------------------------------------- /src/components/SEO/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starc007/readmi/HEAD/src/components/SEO/index.tsx -------------------------------------------------------------------------------- /src/components/sections/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starc007/readmi/HEAD/src/components/sections/index.tsx -------------------------------------------------------------------------------- /src/context/editorContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starc007/readmi/HEAD/src/context/editorContext.tsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starc007/readmi/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starc007/readmi/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/pages/Editor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starc007/readmi/HEAD/src/pages/Editor/index.tsx -------------------------------------------------------------------------------- /src/pages/GenerateReadme/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starc007/readmi/HEAD/src/pages/GenerateReadme/index.tsx -------------------------------------------------------------------------------- /src/pages/LandingPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starc007/readmi/HEAD/src/pages/LandingPage.tsx -------------------------------------------------------------------------------- /src/pages/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starc007/readmi/HEAD/src/pages/Layout.tsx -------------------------------------------------------------------------------- /src/pages/Templates/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starc007/readmi/HEAD/src/pages/Templates/index.tsx -------------------------------------------------------------------------------- /src/utils/sections/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starc007/readmi/HEAD/src/utils/sections/index.ts -------------------------------------------------------------------------------- /src/utils/template__files/Template-1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starc007/readmi/HEAD/src/utils/template__files/Template-1.ts -------------------------------------------------------------------------------- /src/utils/template__files/Template-2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starc007/readmi/HEAD/src/utils/template__files/Template-2.ts -------------------------------------------------------------------------------- /src/utils/template__files/Template-3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starc007/readmi/HEAD/src/utils/template__files/Template-3.ts -------------------------------------------------------------------------------- /src/utils/template__files/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starc007/readmi/HEAD/src/utils/template__files/index.ts -------------------------------------------------------------------------------- /src/utils/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starc007/readmi/HEAD/src/utils/types/index.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starc007/readmi/HEAD/tailwind.config.cjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starc007/readmi/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starc007/readmi/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starc007/readmi/HEAD/vite.config.ts --------------------------------------------------------------------------------