mirror of
https://github.com/pheralb/svgl.git
synced 2024-11-10 14:46:54 +08:00
123 lines
3.7 KiB
Markdown
123 lines
3.7 KiB
Markdown
<div align="center">
|
|
<a href="https://svgl.vercel.app">
|
|
<img src="static/images/screenshot.png">
|
|
</a>
|
|
<p></p>
|
|
</div>
|
|
|
|
<div align="center">
|
|
<a href="https://svgl.app" target="_blank">
|
|
Discover
|
|
</a>
|
|
<span> ✦ </span>
|
|
<a href="https://github.com/sujjeee/svgls" target="_blank">
|
|
Terminal
|
|
</a>
|
|
<span> ✦ </span>
|
|
<a href="#-getting-started">
|
|
Submit logo
|
|
</a>
|
|
<span> ✦ </span>
|
|
<a href="#%EF%B8%8F-stack">
|
|
Stack
|
|
</a>
|
|
<span> ✦ </span>
|
|
<a href="#%EF%B8%8F-contributing">
|
|
Contributing
|
|
</a>
|
|
</div>
|
|
|
|
</p>
|
|
|
|
<div align="center">
|
|
|
|
![Svelte Badge](https://img.shields.io/badge/Svelte-FF3E00?logo=svelte&logoColor=fff&style=flat)
|
|
[![Build Status](https://img.shields.io/endpoint.svg?url=https%3A%2F%2Factions-badge.atrox.dev%2Fpheralb%2Fsvgl%2Fbadge%3Fref%3Dmain&style=flat)](https://actions-badge.atrox.dev/pheralb/svgl/goto?ref=main)
|
|
![GitHub stars](https://img.shields.io/github/stars/pheralb/svgl)
|
|
![GitHub issues](https://img.shields.io/github/issues/pheralb/svgl)
|
|
![GitHub forks](https://img.shields.io/github/forks/pheralb/svgl)
|
|
![GitHub PRs](https://img.shields.io/github/issues-pr/pheralb/svgl)
|
|
![Tailwind CSS Badge](https://img.shields.io/badge/Tailwind%20CSS-06B6D4?logo=tailwindcss&logoColor=fff&style=flat)
|
|
|
|
</div>
|
|
|
|
## 🛠️ Stack
|
|
|
|
- [**Sveltekit**](https://kit.svelte.dev/) - Web development, streamlined.
|
|
- [**Typescript**](https://www.typescriptlang.org/) - JavaScript with syntax for types.
|
|
- [**Tailwindcss**](https://tailwindcss.com/) - A utility-first CSS framework for rapidly building custom designs.
|
|
- [**Prettier**](https://prettier.io/) + [prettier-plugin-tailwindcss](https://github.com/tailwindlabs/prettier-plugin-tailwindcss) - An opinionated code formatter.
|
|
- [**Lucide Icons**](https://lucide.dev/) + [**phosphor-svelte**](https://github.com/haruaki07/phosphor-svelte) - A clean and friendly icons libraries.
|
|
- [**svelte-sonner**](https://github.com/wobsoriano/svelte-sonner) - An opinionated toast component for Svelte.
|
|
- [**Vitest**](https://vitest.dev/) - Blazing Fast Unit Test Framework.
|
|
|
|
## 🚀 Getting Started
|
|
|
|
You will need:
|
|
|
|
- [Node.js 16+ (recommended 18 LTS)](https://nodejs.org/en/).
|
|
- [Git](https://git-scm.com/).
|
|
|
|
1. Clone or [fork](https://github.com/pheralb/svgl/fork) this repository:
|
|
|
|
```bash
|
|
git clone git@github.com:pheralb/svgl.git
|
|
```
|
|
|
|
2. Install dependencies:
|
|
|
|
```bash
|
|
# with pnpm (recommended):
|
|
pnpm install
|
|
|
|
# with npm:
|
|
npm install
|
|
```
|
|
|
|
3. Go to the [**`static/library`**](https://github.com/pheralb/svgl/blob/main/static/library) folder and add your `.svg` logo.
|
|
|
|
> [!WARNING]
|
|
> Remember to optimize SVG for web, you can use [SVGOMG](https://jakearchibald.github.io/svgomg/). The size limit for each .svg is **20kb**.
|
|
|
|
4. Go to the [**`src/data/svgs.ts`**](https://github.com/pheralb/svgl/blob/main/src/data/svgs.ts) and add the information about your logo, following the structure:
|
|
|
|
```json
|
|
{
|
|
"title": "Title",
|
|
"category": "Category",
|
|
"route": "/library/your_logo.svg",
|
|
"url": "Website"
|
|
},
|
|
```
|
|
|
|
or to support a different logo for light and dark themes:
|
|
|
|
```json
|
|
{
|
|
"title": "Title",
|
|
"category": "Category",
|
|
"route": {
|
|
"light": "/library/your_logo_light.svg",
|
|
"dark": "/library/your_logo_dark.svg"
|
|
},
|
|
"url": "Website"
|
|
},
|
|
```
|
|
|
|
> [!NOTE]
|
|
> The list of categories is here: [`src/types/categories.ts`](https://github.com/pheralb/svgl/blob/main/src/types/categories.ts). You can add a new category if you need it.
|
|
|
|
And create a pull request with your logo 🚀.
|
|
|
|
## ✌️ Contributing
|
|
|
|
<a href="https://github.com/pheralb/svgl/graphs/contributors">
|
|
<img src="https://contrib.rocks/image?repo=pheralb/svgl" />
|
|
</a>
|
|
|
|
<p></p>
|
|
|
|
## 🔑 License
|
|
|
|
- [MIT](https://github.com/pheralb/svgl/blob/main/LICENSE).
|