Skip to content

Commit ed16ce0

Browse files
committed
fix: reduced image sizes for better load time
fix: renamed images fix: cofounder images are now centered
1 parent 55a1a56 commit ed16ce0

31 files changed

Lines changed: 177 additions & 4 deletions

.gitignore

Lines changed: 155 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,155 @@
1+
# Dependencies
2+
node_modules/
3+
*/node_modules/
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
bun.lockb
10+
11+
# Build outputs
12+
dist/
13+
dist-ssr/
14+
build/
15+
out/
16+
.next/
17+
.nuxt/
18+
.output/
19+
.vercel/
20+
21+
# Environment variables
22+
.env
23+
.env.*
24+
!.env.example
25+
*.local
26+
27+
# Logs
28+
logs/
29+
*.log
30+
31+
# Runtime data
32+
pids/
33+
*.pid
34+
*.seed
35+
*.pid.lock
36+
37+
# Coverage directory used by tools like istanbul
38+
coverage/
39+
*.lcov
40+
41+
# nyc test coverage
42+
.nyc_output/
43+
44+
# Dependency directories
45+
jspm_packages/
46+
47+
# TypeScript cache
48+
*.tsbuildinfo
49+
50+
# Optional npm cache directory
51+
.npm
52+
53+
# Optional eslint cache
54+
.eslintcache
55+
56+
# Optional stylelint cache
57+
.stylelintcache
58+
59+
# Microbundle cache
60+
.rpt2_cache/
61+
.rts2_cache_cjs/
62+
.rts2_cache_es/
63+
.rts2_cache_umd/
64+
65+
# Optional REPL history
66+
.node_repl_history
67+
68+
# Output of 'npm pack'
69+
*.tgz
70+
71+
# Yarn Integrity file
72+
.yarn-integrity
73+
74+
# parcel-bundler cache (https://parceljs.org/)
75+
.cache
76+
.parcel-cache
77+
78+
# Vite
79+
.vite
80+
81+
# Rollup
82+
.rollup.cache
83+
84+
# Editor directories and files
85+
.vscode/
86+
!.vscode/extensions.json
87+
!.vscode/settings.json
88+
!.vscode/tasks.json
89+
!.vscode/launch.json
90+
.idea/
91+
*.swp
92+
*.swo
93+
*~
94+
95+
# OS generated files
96+
.DS_Store
97+
.DS_Store?
98+
._*
99+
.Spotlight-V100
100+
.Trashes
101+
ehthumbs.db
102+
Thumbs.db
103+
104+
# Temporary files
105+
tmp/
106+
temp/
107+
*.tmp
108+
*.temp
109+
110+
# Backup files
111+
*.bak
112+
*.backup
113+
*.old
114+
115+
# Archive files (uncomment if you don't want to track them)
116+
# *.zip
117+
# *.tar.gz
118+
# *.rar
119+
120+
# Built assets that should not be committed
121+
# (uncomment if these are generated and should not be tracked)
122+
# assets/
123+
# lovable-uploads/
124+
125+
# Lock files (choose one approach)
126+
# Option 1: Track lock files (recommended for applications)
127+
# (current setup - no lock files ignored)
128+
129+
# Option 2: Ignore lock files (sometimes used in libraries)
130+
# package-lock.json
131+
# yarn.lock
132+
# pnpm-lock.yaml
133+
134+
# Vercel
135+
.vercel
136+
137+
# Local development
138+
.local
139+
140+
# Testing
141+
coverage/
142+
.jest/
143+
144+
# Storybook
145+
storybook-static/
146+
147+
# PWA
148+
sw.js
149+
workbox-*.js
150+
151+
# Sentry
152+
.sentryclirc
153+
154+
# Wrangler (Cloudflare Workers)
155+
.wrangler/
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
2+
# Team member images
3+
#
4+
# Content:
5+
# - ipek-akdeniz.png - Ipek Akdeniz
6+
# - agustin-coppari.png - Agustin Nahuel Coppari Hollmann
7+
# - deniz-erdogan.png - Deniz Onat Erdoğan
8+
# - open-position.png - Open position placeholder
9+
# - open-position-alt.png - Alternative open position placeholder
10+
# - aleksa-stojkovic.png - Aleksa Stojković
11+
# - johannes-geier.png - Johannes Geier
12+
# - kagan-dikmen.png - Kagan Dikmen
13+
# - mehmet-karadeniz.png - Mehmet Efe Karadeniz
14+
# - osman-yasar.png - Osman Yasar
15+
# - tobias-konieczny.png - Tobias Konieczny
451 KB
Loading

Source code/public/media/team/aleksa-stojkovic.png renamed to Source code/public/media/originals/team/aleksa-stojkovic.png

File renamed without changes.
4.37 MB
Loading
5.37 MB
Loading
4.96 MB
Loading
5.25 MB
Loading
5.33 MB
Loading
5.57 MB
Loading

0 commit comments

Comments
 (0)