🚀 Auto-deploy: BrainWind atualizado em 14/07/2026 18:03:29

This commit is contained in:
2026-07-14 18:03:29 +00:00
parent 5e44f1a0bd
commit 0755a56702
20 changed files with 597 additions and 263 deletions
+12 -8
View File
@@ -16,6 +16,7 @@ import ExportMenu from '../components/ExportMenu';
import { EducationalManual } from '@/components/EducationalManual';
import { PressureLegend } from '@/components/PressureLegend';
import { SaveModuleDialog } from '@/components/SaveModuleDialog';
import { WindParametersSummary } from '@/components/WindParametersSummary';
import { useHydrationStore } from '@/store/hydrationStore';
const GalpaoModule: React.FC = () => {
@@ -55,11 +56,18 @@ const GalpaoModule: React.FC = () => {
{/* Coluna Esquerda: Controles */}
<div className="w-full lg:w-80 shrink-0 flex flex-col gap-4 overflow-y-auto pb-8 lg:pb-0">
<Card className="shadow-sm border-border">
<CardHeader className="pb-3">
<CardTitle className="text-lg">Geometria</CardTitle>
<CardDescription>Ajuste as dimensões do galpão.</CardDescription>
</CardHeader>
<CardHeader className="pb-3 flex flex-row items-start justify-between space-y-0 pr-6">
<div>
<CardTitle className="text-lg">Geometria</CardTitle>
<CardDescription>Tabelas 4 e 5 NBR 6123.</CardDescription>
</div>
<SaveModuleDialog
moduleType="galpao"
inputs={{ width, length, height, roofPitch }}
/>
</CardHeader>
<CardContent className="space-y-6">
<WindParametersSummary />
<div className="space-y-3">
<div className="flex justify-between items-center">
<Tooltip>
@@ -180,10 +188,6 @@ const GalpaoModule: React.FC = () => {
<div className="flex justify-center bg-background rounded-xl border border-border shadow-sm p-4">
<div className="flex flex-col items-end gap-2">
<SaveModuleDialog
moduleType="galpao"
inputs={{ width, length, height, roofPitch }}
/>
<ExportMenu />
</div>
</div>