Compare commits
2 Commits
b563738f5a
...
5d18535224
Author | SHA1 | Date | |
---|---|---|---|
5d18535224 | |||
5a6f87e706 |
68
.gitignore
vendored
Normal file
@ -0,0 +1,68 @@
|
||||
# Dependencies
|
||||
/node_modules
|
||||
/.pnp
|
||||
.pnp.js
|
||||
|
||||
# Testing
|
||||
/coverage
|
||||
|
||||
# Next.js
|
||||
/.next/
|
||||
/out/
|
||||
.next
|
||||
|
||||
# Production
|
||||
/build
|
||||
|
||||
# Misc
|
||||
.DS_Store
|
||||
*.pem
|
||||
Thumbs.db
|
||||
|
||||
# Debug
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# Local env files
|
||||
.env*.local
|
||||
.env
|
||||
.env.local
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
.env.production.local
|
||||
|
||||
# IDE
|
||||
.idea
|
||||
.vscode
|
||||
*.suo
|
||||
*.ntvs*
|
||||
*.njsproj
|
||||
*.sln
|
||||
*.sw?
|
||||
|
||||
# Vercel
|
||||
.vercel
|
||||
|
||||
# TypeScript
|
||||
*.tsbuildinfo
|
||||
tsconfig.tsbuildinfo
|
||||
.tsbuildinfo
|
||||
|
||||
# PWA files
|
||||
**/public/sw.js
|
||||
**/public/workbox-*.js
|
||||
**/public/worker-*.js
|
||||
**/public/sw.js.map
|
||||
**/public/workbox-*.js.map
|
||||
**/public/worker-*.js.map
|
||||
|
||||
# Next.js Specific
|
||||
/public/sitemap*.xml
|
||||
/public/robots.txt
|
||||
.cache
|
||||
.temp
|
||||
_static
|
||||
|
||||
# Logs
|
||||
*.log
|
@ -70,12 +70,12 @@ function Header({
|
||||
onMouseLeave={() => setLogoHovered(false)}
|
||||
>
|
||||
<Logomark
|
||||
className="h-8 sm:hidden"
|
||||
className="h-10 sm:hidden"
|
||||
invert={invert}
|
||||
filled={logoHovered}
|
||||
/>
|
||||
<Logo
|
||||
className="hidden h-8 sm:block"
|
||||
className="hidden h-10 sm:block"
|
||||
invert={invert}
|
||||
filled={logoHovered}
|
||||
/>
|
||||
|
Before Width: | Height: | Size: 7.3 KiB After Width: | Height: | Size: 1.2 MiB |
Before Width: | Height: | Size: 7.3 KiB After Width: | Height: | Size: 1.2 MiB |
Before Width: | Height: | Size: 844 B After Width: | Height: | Size: 5.6 MiB |
Before Width: | Height: | Size: 844 B After Width: | Height: | Size: 5.6 MiB |