From 28df47ff0061f7cb9b0491de575cf27f6ca17362 Mon Sep 17 00:00:00 2001 From: houseassassin Date: Thu, 7 May 2026 20:33:10 +0300 Subject: [PATCH] fix: remove windows slider from Estimator (unused in cost formula) --- src/components/Estimator.jsx | 122 +++++++++++++++++++++++++++++++++++ 1 file changed, 122 insertions(+) create mode 100644 src/components/Estimator.jsx diff --git a/src/components/Estimator.jsx b/src/components/Estimator.jsx new file mode 100644 index 0000000..f56144c --- /dev/null +++ b/src/components/Estimator.jsx @@ -0,0 +1,122 @@ +import React, { useState } from 'react'; +import { motion } from 'framer-motion'; +import { Calculator } from 'lucide-react'; + +const Estimator = () => { + const [area, setArea] = useState(20); // in sq meters + const [thickness, setThickness] = useState(200); + + // Цены за квадратный метр в зависимости от толщины пленки + const costPerSqM = thickness === 200 ? 2000 : 3000; + const estimatedCost = area * costPerSqM; + + return ( +
+
+
+ +
+ +

+ КАЛЬКУЛЯТОР ЗАЩИТЫ +

+

+ Рассчитайте примерную стоимость обеспечения безопасности вашего периметра. Окончательная стоимость определяется после профессионального осмотра объекта. +

+ +
+
+
+ +
+ +
+ +
+
+ + {area} +
+ setArea(parseInt(e.target.value))} + style={{ width: '100%', accentColor: 'var(--accent-blue)', height: '8px', borderRadius: '4px' }} + /> +
+
+
+
+ +
+ + + + + +

Ориентировочная стоимость

+
+ {estimatedCost.toLocaleString('ru-RU')} ₽ +
+

+ Включает бронематериалы, специализированный монтаж и финальную проверку. +

+ + + Запросить точный расчет + +
+
+ +
+
+
+ ); +}; + +export default Estimator;