Axil_website/docker-compose.yml
Vadym Samoilenko 83a8878f4a feat: redesign HeroSection to 3-column MinimalistHero layout
- HeroSection: 3-col layout (copy | concentric circles+dashboard | display headline)
  - 'use client' + framer-motion entrance animations (slide in from sides, scale centre)
  - DashboardPreview inline component (compact portal mockup)
  - Two floating stat mini-cards (Avg Tax Saved, Response Time)
  - Mobile: stacked layout, right headline column hidden, H1 in left column
- ContainerScroll: simplified — removed 72rem scroll container and scroll transforms;
  now plain layout wrapper with CSS fadeInUp entrance
- Header: logo size increased h-10 → h-13 (40px → 52px)
- fix: escape apostrophes in ProcessSection, SolutionSection, TestimonialsSection
- fix: remove unused customSize param from SpotlightCard
- docs: update CONTEXT_HANDOVER.md with session 4 changes

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-02-22 21:20:42 +00:00

42 lines
918 B
YAML

services:
app:
build:
context: .
target: dev
ports:
- '3000:3000'
volumes:
- ./src:/app/src
- ./public:/app/public
- ./next.config.ts:/app/next.config.ts
- ./tsconfig.json:/app/tsconfig.json
- ./postcss.config.mjs:/app/postcss.config.mjs
- ./package.json:/app/package.json
- ./pnpm-lock.yaml:/app/pnpm-lock.yaml
environment:
- NODE_ENV=development
- WATCHPACK_POLLING=true
env_file:
- .env.local
depends_on:
db:
condition: service_healthy
db:
image: postgres:17-alpine
ports:
- '5432:5432'
environment:
POSTGRES_USER: axil
POSTGRES_PASSWORD: axil_dev
POSTGRES_DB: axil
volumes:
- pgdata:/var/lib/postgresql/data
healthcheck:
test: ['CMD-SHELL', 'pg_isready -U axil']
interval: 5s
timeout: 5s
retries: 5
volumes:
pgdata: