Brunobrno 46bc131a56 Revamp footer, navbar, drone section and routes
- Replace heavy drone assets with S3-hosted video (excluded from git via .gitignore).
- Add routes for /services/web and /services/film in App.tsx.
- Rewrite Footer with framer-motion, structured social/contact/service arrays and improved responsive layout.
- Redesign DroneSection: full-bleed background video, layered panels/vignette, updated copy and styling.
- Minor content change in HeroSection (name updated to "David Bruno Vontor").
- Major Navbar refactor: improved mobile drawer with backdrop, accordion submenus, better state handling and accessibility.
- ChatSidebar: add optional onClose/onSelectChat callbacks, close button.
- ContactMe mobile CSS: tweak sizing and margins for small screens.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-09 00:43:38 +02:00
2026-01-06 16:42:29 +01:00
2026-04-23 00:36:57 +02:00
2026-04-23 00:36:57 +02:00
2026-05-28 17:23:04 +02:00

vontor.cz

Czech e-marketplace — Django backend + React frontend.

Requirements

  • Docker Desktop
  • Node.js 22+ (frontend dev)
  • Python 3.12+ (backend dev)

Running locally

docker-compose up

Frontend dev server:

cd frontend && npm install && npm run dev

Docker — corporate / custom CA certificates

If your network uses SSL inspection (corporate proxy, Tailscale, etc.) the Docker build will fail with SSL errors when fetching packages.

Fix: export your Windows Root CA store into the build context once:

New-Item -Force -ItemType Directory backend\certs | Out-Null; $s = [Security.Cryptography.X509Certificates.X509Store]::new("Root","LocalMachine"); $s.Open("ReadOnly"); $s.Certificates | % { "-----BEGIN CERTIFICATE-----`n" + [Convert]::ToBase64String($_.RawData,"InsertLineBreaks") + "`n-----END CERTIFICATE-----" } | Out-File -Encoding ascii backend\certs\windows-ca-bundle.crt; $s.Close()

The file is git-ignored. Re-run the command whenever your CA store changes.

Description
No description provided
https://vontor.cz
Readme 206 MiB
Languages
TypeScript 72.4%
Python 22.3%
HTML 2.6%
CSS 2.1%
JavaScript 0.5%