A sleek, modern Text to ASCII Art Generator built with SvelteKit, TailwindCSS, ShadCn UI, and figlet.js.
View the live demo on GitHub Pages (Link will be available after deployment)
SvelteTaag/
├── src/ # Main source code
│ ├── app.css # Global styles
│ ├── app.html # HTML template
│ ├── lib/ # Library code
│ │ ├── components/ # UI components
│ │ └── types/ # TypeScript definitions
│ └── routes/ # SvelteKit routes
├── static/ # Static assets
│ ├── manifest.json # PWA manifest
│ ├── service-worker.js # PWA service worker
│ └── icons/ # PWA icons
├── package.json # Project dependencies
└── README.md # This file
Clone the repository:
git clone https://github.com/yourusername/SvelteTaag.git
cd SvelteTaag
Install dependencies:
npm install
Run the development server:
npm run dev
Open your browser at http://localhost:5173
To create a production build:
npm run build
The built files will be in the build
directory, ready to be deployed to GitHub Pages or any static hosting service.
This project is configured for easy deployment to GitHub Pages using the static adapter. After building, the contents of the build
directory can be pushed to the gh-pages
branch of your repository.
This project is licensed under the MIT License - see the LICENSE file for details.