-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathold_features.txt
More file actions
264 lines (256 loc) · 8.34 KB
/
old_features.txt
File metadata and controls
264 lines (256 loc) · 8.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
'use client';
import { motion } from 'framer-motion';
// MUI Icons - Outlined version
import InsightsOutlinedIcon from '@mui/icons-material/InsightsOutlined';
import ElectricBoltOutlinedIcon from '@mui/icons-material/ElectricBoltOutlined';
import StorageOutlinedIcon from '@mui/icons-material/StorageOutlined';
import ErrorOutlineOutlinedIcon from '@mui/icons-material/ErrorOutlineOutlined';
import FaceRetouchingNaturalOutlinedIcon from '@mui/icons-material/FaceRetouchingNaturalOutlined';
import DescriptionOutlinedIcon from '@mui/icons-material/DescriptionOutlined';
import SmartToyOutlinedIcon from '@mui/icons-material/SmartToyOutlined';
import Inventory2OutlinedIcon from '@mui/icons-material/Inventory2Outlined';
import CloudOutlinedIcon from '@mui/icons-material/CloudOutlined';
import {
Box,
Container,
Grid2 as Grid,
Typography,
alpha,
Stack,
Card,
} from '@mui/material';
const features = [
{
icon: InsightsOutlinedIcon,
title: 'Monitoreo',
description:
'Supervisión en tiempo real de todos los parámetros eléctricos con latencia menor a 1 segundo.',
color: 'primary.main',
},
{
icon: ElectricBoltOutlinedIcon,
title: 'Diagramas Unilineales',
description:
'Esquemas interactivos con representación dinámica del estado de la instalación.',
color: 'primary.main',
},
{
icon: StorageOutlinedIcon,
title: 'Registro de datos',
description:
'Acceso histórico completo a registros pasados con análisis de tendencias y patrones.',
color: 'primary.main',
},
{
icon: ErrorOutlineOutlinedIcon,
title: 'Alarmas inteligentes',
description:
'Alarmas en base a eventos y predicciones para prevención de fallas.',
color: 'primary.main',
},
{
icon: FaceRetouchingNaturalOutlinedIcon,
title: 'Autenticación',
description:
'Sistema de seguridad avanzado con reconocimiento facial y autenticación biométrica multicapa.',
color: 'primary.main',
},
{
icon: DescriptionOutlinedIcon,
title: 'Reportes Automáticos',
description:
'Generación de reportes de consumo automáticos con información detallada del estado.',
color: 'primary.main',
},
{
icon: SmartToyOutlinedIcon,
title: 'Inteligencia Artificial',
description: 'Asistente inteligente para un mejor análisis de cargas.',
color: 'primary.main',
},
{
icon: Inventory2OutlinedIcon,
title: 'Gemelo Digital',
description:
'Representa tu proceso en el mundo digital con una copia exacta de tu instalación.',
color: 'primary.main',
},
{
icon: CloudOutlinedIcon,
title: 'Respaldo en la nube',
description:
'Sincronización a la nube para acceder a tu información desde cualquier dispositivo.',
color: 'primary.main',
},
];
export function Features() {
const containerVariants = {
hidden: { opacity: 0 },
visible: {
opacity: 1,
transition: {
staggerChildren: 0.1,
},
},
};
const itemVariants = {
hidden: { opacity: 0, y: 20 },
visible: {
opacity: 1,
y: 0,
transition: {
duration: 0.6,
},
},
};
return (
<Box
component='section'
id='features'
sx={(theme) => ({
py: 12,
backgroundColor: alpha(theme.palette.secondary.main, 0.05),
overflow: 'hidden',
})}
>
<Container maxWidth='lg'>
<Box
component={motion.div}
initial={{ opacity: 0, y: 30 }}
whileInView={{ opacity: 1, y: 0 }}
transition={{ duration: 0.8 }}
viewport={{ once: true }}
sx={{ textAlign: 'center', mb: 8 }}
>
<Typography
variant='h2'
sx={{
fontSize: { xs: '2.5rem', md: '3.5rem' },
mb: 3,
fontWeight: 800,
lineHeight: 1.2,
}}
>
<Box
component='span'
sx={(theme) => ({
background: `linear-gradient(to right, ${theme.palette.text.primary}, ${theme.palette.text.primary}, ${theme.palette.primary.main})`,
backgroundClip: 'text',
WebkitBackgroundClip: 'text',
color: 'transparent',
})}
>
Funcionamiento
</Box>{' '}
<Box component='span' sx={{ color: 'primary.main' }}>
Modular
</Box>
</Typography>
<Typography
variant='h5'
color='text.secondary'
sx={{
maxWidth: 800,
mx: 'auto',
fontWeight: 400,
fontSize: '1.125rem',
lineHeight: 1.6,
}}
>
Arma tu propia solución escogiendo los módulos que necesitas!
</Typography>
</Box>
<Box
component={motion.div}
variants={containerVariants}
initial='hidden'
whileInView='visible'
viewport={{ once: true }}
>
<Grid container spacing={2}>
{features.map((feature, index) => (
<Grid key={index} size={{ xs: 12, sm: 6, lg: 4 }}>
<Box
component={motion.div}
variants={itemVariants}
whileHover={{ scale: 1.05 }}
sx={{ height: '100%' }}
>
<Card
sx={(theme) => ({
height: '100%',
p: 4,
transition: 'all 0.3s cubic-bezier(0.4, 0, 0.2, 1)',
backgroundColor: 'background.paper',
border: '1px solid',
borderColor: 'divider',
'&:hover': {
borderColor: alpha(theme.palette.primary.main, 0.5),
backgroundColor: alpha(
theme.palette.background.paper,
0.8,
),
boxShadow: `0 8px 32px ${alpha(theme.palette.common.black, 0.05)}`,
},
'& .feature-icon-wrapper': {
transition: 'all 0.3s ease',
},
'&:hover .feature-icon-wrapper': {
transform: 'rotate(10deg) scale(1.1)',
backgroundColor: alpha(theme.palette.primary.main, 0.1),
},
'&:hover .feature-title': {
color: 'primary.main',
},
})}
>
<Stack direction='row' spacing={3} alignItems='flex-start'>
<Box
className='feature-icon-wrapper'
sx={(theme) => ({
p: 2,
borderRadius: 2.5,
backgroundColor: alpha(
theme.palette.secondary.main,
0.08,
),
color: 'primary.main',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
})}
>
<feature.icon sx={{ fontSize: 28 }} />
</Box>
<Box>
<Typography
variant='h6'
className='feature-title'
sx={{
mb: 1.5,
fontWeight: 700,
transition: 'color 0.3s ease',
fontSize: '1.25rem',
}}
>
{feature.title}
</Typography>
<Typography
variant='body2'
color='text.secondary'
sx={{ lineHeight: 1.7, fontSize: '1rem' }}
>
{feature.description}
</Typography>
</Box>
</Stack>
</Card>
</Box>
</Grid>
))}
</Grid>
</Box>
</Container>
</Box>
);
}