Skip to content
This repository has been archived by the owner on Mar 23, 2024. It is now read-only.

Commit

Permalink
compress images / etc
Browse files Browse the repository at this point in the history
  • Loading branch information
scffs committed Dec 15, 2023
1 parent 1a001b0 commit a584ad3
Show file tree
Hide file tree
Showing 15 changed files with 143 additions and 440 deletions.
5 changes: 1 addition & 4 deletions biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@
"rules": {
"recommended": true
},
"ignore": [
"dist",
"node_modules"
]
"ignore": ["dist", "node_modules"]
}
}
Binary file modified src/assets/admin.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/avaSmall.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/charp.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/db.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/assets/elysia.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/gatto.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 1 addition & 9 deletions src/assets/habr.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
97 changes: 1 addition & 96 deletions src/assets/php.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
266 changes: 1 addition & 265 deletions src/assets/python.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/rust.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
53 changes: 53 additions & 0 deletions src/assets/technologies.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
import charp from './charp.png'
import docker from './docker.png'
import elysia from './elysia.svg'
import fastify from './fastify.png'
import go from './go.png'
import js from './js.png'
import kuber from './kuber.png'
import mongodb from './mongodb.svg'
import mysql from './mysql.svg'
import nest from './nest.png'
import nodejs from './nodejs.svg'
import php from './php.svg'
import postgres from './postgresql.svg'
import python from './python.svg'
import react from './react.svg'
import redis from './redis.png'
import redux from './redux.svg'
import rust from './rust.png'
import styled from './styled-components.svg'
import ts from './ts.svg'
import vite from './vite.png'
import vk from './vk.svg'
import vue from './vue.svg'
import zustand from './zustand.png'
import bun from './bun.png'

export {
bun,
charp,
docker,
fastify,
rust,
go,
js,
kuber,
mongodb,
mysql,
nest,
nodejs,
php,
postgres,
python,
react,
redis,
redux,
styled,
ts,
vite,
vk,
vue,
elysia,
zustand
}
Binary file modified src/assets/zustand.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
54 changes: 28 additions & 26 deletions src/components/StackInfo/data.ts
Original file line number Diff line number Diff line change
@@ -1,28 +1,30 @@
import bun from '../../assets/bun.png'
import charp from '../../assets/charp.png'
import docker from '../../assets/docker.png'
import fastify from '../../assets/fastify.png'
import rust from '../../assets/rust.png'
import go from '../../assets/go.png'
import js from '../../assets/js.png'
import kuber from '../../assets/kuber.png'
import mongodb from '../../assets/mongodb.svg'
import mysql from '../../assets/mysql.svg'
import nest from '../../assets/nest.png'
import nodejs from '../../assets/nodejs.svg'
import php from '../../assets/php.svg'
import postgres from '../../assets/postgresql.svg'
import python from '../../assets/python.svg'
import react from '../../assets/react.svg'
import redis from '../../assets/redis.png'
import redux from '../../assets/redux.svg'
import styled from '../../assets/styled-components.svg'
import ts from '../../assets/ts.svg'
import vite from '../../assets/vite.png'
import vk from '../../assets/vk.svg'
import vue from '../../assets/vue.svg'
import elysia from '../../assets/elysia.svg'
import zustand from '../../assets/zustand.png'
import {
bun,
charp,
docker,
elysia,
fastify,
go,
js,
kuber,
mongodb,
mysql,
nest,
nodejs,
php,
postgres,
python,
react,
redis,
redux,
rust,
styled,
ts,
vite,
vk,
vue,
zustand
} from '../../assets/technologies.ts'

export interface Technology {
name: string
Expand Down Expand Up @@ -61,5 +63,5 @@ export const technologiesOther: Technology[] = [
{ name: 'Docker', logo: docker, level: 'Beginner' },
{ name: 'Python', logo: python, level: 'Intermediate' },
{ name: 'Go', logo: go, level: 'Too small' },
{ name: 'Kubernetes', logo: kuber, level: 'Beginner' },
{ name: 'Kubernetes', logo: kuber, level: 'Beginner' }
]
Loading

0 comments on commit a584ad3

Please sign in to comment.