007LIVE 01.2026
LARANA
QR на столе вместо меню: гость заказывает, кухня видит заказ сразу, владелец наконец знает, что продаётся.
A QR code on the table instead of a menu: the guest orders, the kitchen sees it at once, the owner finally knows what sells.
задачаproblem
Бумажные меню, заказы на слух и полное отсутствие аналитики. Гость ждёт официанта, заказ теряется по дороге на кухню, а владелец не знает, какие блюда его кормят.
Paper menus, orders taken by ear and no analytics at all. The guest waits for a waiter, the order gets lost on the way to the kitchen, and the owner has no idea which dishes pay the rent.
решениеapproach
QR-код на столе открывает меню с фотографией каждого блюда и перелистыванием как в TikTok. Гость собирает заказ, оформляет его и видит готовность в реальном времени; чат-бот подсказывает, что выбрать; кухня работает в своей панели.
A QR code on the table opens a menu with a photograph of every dish and TikTok-style swiping. The guest builds an order, places it and watches it being prepared in real time; a chatbot helps with the choice; the kitchen works from its own panel.
стекstack
что умеетwhat it does
- Интерактивное меню с фотографиями, больше 50 блюдAn interactive menu with photographs, 50+ dishes
- Перелистывание блюд свайпом, как в TikTokTikTok-style swiping between dishes
- Чат-бот с рекомендациямиA chatbot that recommends
- Корзина и оформление заказаCart and checkout
- Отслеживание готовности в реальном времениReal-time order tracking
- Лайки и комментарии к блюдамLikes and comments on dishes
- Панель кухни для управления заказамиA kitchen panel for managing orders
архитектураarchitecture
Express.js (Node.js backend)
├── /api/menu → SQLite menu database
├── /api/orders → order CRUD + status tracking
├── /api/social → likes, comments, sharing
├── /api/chat → AI chatbot (DeepSeek)
├── /api/admin → kitchen admin panel
└── static frontend (7 pages)
├── index → landing page
├── menu → swipeable food cards
├── cart → shopping cart
├── checkout → order placement
├── track → real-time order tracking
├── thankyou → order confirmation
└── admin → kitchen dashboard