- Add comprehensive metadata to root layout with Open Graph, Twitter cards - Create dynamic sitemap.ts for all pages and events - Create robots.ts with proper allow/disallow rules - Add JSON-LD Event structured data to event detail pages - Add page-specific metadata to events, community, contact, FAQ pages - Add FAQ structured data schema - Update footer with local SEO text for Asunción, Paraguay - Add web manifest for mobile SEO - Create 404 page with proper noindex - Optimize image alt text and add lazy loading - Add NEXT_PUBLIC_SITE_URL env variable - Add about/ folder to gitignore
61 lines
581 B
Plaintext
61 lines
581 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
package-lock.json
|
|
.pnp
|
|
.pnp.js
|
|
|
|
# Build outputs
|
|
dist/
|
|
.next/
|
|
out/
|
|
build/
|
|
|
|
# Database
|
|
*.db
|
|
*.sqlite
|
|
backend/data/
|
|
|
|
# Environment files
|
|
.env
|
|
.env.*
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
!.env.example
|
|
!**/.env.example
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Runtime uploads / user-generated content
|
|
backend/uploads/
|
|
|
|
# Tooling
|
|
.turbo/
|
|
.cursor/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# TypeScript
|
|
*.tsbuildinfo
|
|
|
|
# Testing
|
|
coverage/
|
|
|
|
# Misc
|
|
*.pem
|
|
|
|
# Documentation (internal)
|
|
about/
|