update css

This commit is contained in:
Jeff Emmett 2025-07-03 18:41:21 -04:00
parent 9d5ca7cdf4
commit 978746347f
8 changed files with 7704 additions and 15 deletions

116
.gitignore vendored Normal file
View File

@ -0,0 +1,116 @@
# Dependencies
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Next.js
.next/
out/
build/
dist/
# Environment variables
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
# Vercel
.vercel
# TypeScript
*.tsbuildinfo
next-env.d.ts
# IDE and Editor files
.vscode/
.idea/
*.swp
*.swo
*~
# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# Logs
logs
*.log
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# Coverage directory used by tools like istanbul
coverage/
*.lcov
# nyc test coverage
.nyc_output
# Dependency directories
jspm_packages/
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# Yarn Integrity file
.yarn-integrity
# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache
# Next.js build output
.next
# Nuxt.js build / generate output
.nuxt
dist
# Gatsby files
.cache/
# Storybook build outputs
.out
.storybook-out
# Temporary folders
tmp/
temp/
# Database
*.db
*.sqlite
*.sqlite3
# Backup files
*.bak
*.backup
# Local development
.local

9
env.local Normal file
View File

@ -0,0 +1,9 @@
# Pusher Configuration
NEXT_PUBLIC_PUSHER_APP_KEY=f3c4d32f8247f83439e8
NEXT_PUBLIC_PUSHER_CLUSTER=us2
PUSHER_APP_ID=2010598
PUSHER_SECRET=3395fb093b110cec7bf2
# Supabase Configuration
NEXT_PUBLIC_SUPABASE_URL=https://vzpxtpqpmjmrobsmdxoe.supabase.co
NEXT_PUBLIC_SUPABASE_ANON_KEY=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6InZ6cHh0cHFwbWptcm9ic21keG9lIiwicm9sZSI6ImFub24iLCJpYXQiOjE3NTAzNDc2MjMsImV4cCI6MjA2NTkyMzYyM30.B2Z_0hHbJad9gi0qY2RBGRAGc52NjIBehHxG_7_KnDU

7527
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -10,19 +10,24 @@
"lint": "next lint"
},
"dependencies": {
"@supabase/supabase-js": "^2.38.4",
"firebase": "^11.9.1",
"lucide-react": "^0.263.1",
"next": "^14.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"pusher": "^5.1.2",
"pusher-js": "^8.4.0-rc2",
"@supabase/supabase-js": "^2.38.4",
"lucide-react": "^0.263.1"
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.11",
"autoprefixer": "^10.4.21",
"eslint": "^8.56.0",
"eslint-config-next": "^14.0.4"
"eslint-config-next": "^14.0.4",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.11"
},
"engines": {
"node": "18.x"
}
}
}

5
pages/_app.js Normal file
View File

@ -0,0 +1,5 @@
import '../styles/globals.css'
export default function App({ Component, pageProps }) {
return <Component {...pageProps} />
}

6
postcss.config.js Normal file
View File

@ -0,0 +1,6 @@
module.exports = {
plugins: {
'@tailwindcss/postcss': {},
autoprefixer: {},
},
}

3
styles/globals.css Normal file
View File

@ -0,0 +1,3 @@
@tailwind base;
@tailwind components;
@tailwind utilities;

18
tailwind.config.js Normal file
View File

@ -0,0 +1,18 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
},
},
plugins: [],
}