├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── eslint.config.mjs ├── next.config.ts ├── package.json ├── postcss.config.mjs ├── public ├── file.svg ├── globe.svg ├── next.svg ├── vercel.svg └── window.svg ├── src ├── app │ ├── api │ │ └── svg │ │ │ └── route.ts │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ └── page.tsx ├── components │ └── SvgGenerator.tsx └── lib │ └── utils.ts ├── tsconfig.json └── typing-svg.svg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiteSHADOW1234/TypingSVG/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiteSHADOW1234/TypingSVG/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiteSHADOW1234/TypingSVG/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiteSHADOW1234/TypingSVG/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiteSHADOW1234/TypingSVG/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiteSHADOW1234/TypingSVG/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiteSHADOW1234/TypingSVG/HEAD/next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiteSHADOW1234/TypingSVG/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiteSHADOW1234/TypingSVG/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiteSHADOW1234/TypingSVG/HEAD/public/file.svg -------------------------------------------------------------------------------- /public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiteSHADOW1234/TypingSVG/HEAD/public/globe.svg -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiteSHADOW1234/TypingSVG/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiteSHADOW1234/TypingSVG/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiteSHADOW1234/TypingSVG/HEAD/public/window.svg -------------------------------------------------------------------------------- /src/app/api/svg/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiteSHADOW1234/TypingSVG/HEAD/src/app/api/svg/route.ts -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiteSHADOW1234/TypingSVG/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiteSHADOW1234/TypingSVG/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiteSHADOW1234/TypingSVG/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiteSHADOW1234/TypingSVG/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/components/SvgGenerator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiteSHADOW1234/TypingSVG/HEAD/src/components/SvgGenerator.tsx -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiteSHADOW1234/TypingSVG/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiteSHADOW1234/TypingSVG/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typing-svg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiteSHADOW1234/TypingSVG/HEAD/typing-svg.svg --------------------------------------------------------------------------------