added new icons and new monitor

This commit is contained in:
2026-01-23 19:34:03 -06:00
parent 42168efe65
commit 09fdf8e98c
13 changed files with 238 additions and 21 deletions
+3 -3
View File
@@ -20,15 +20,15 @@ function Selection({
const options = [
{
name: "WINDOWS",
img: "https://images.icon-icons.com/2235/PNG/512/windows_os_logo_icon_134678.png",
img: "/windows.png",
},
{
name: "MACINTOSH",
img: "https://upload.wikimedia.org/wikipedia/commons/f/fa/Apple_logo_black.svg",
img: "apple.png",
},
{
name: "PROFESORES",
img: "https://cdn-icons-png.flaticon.com/512/3135/3135715.png",
img: "teacher.png",
},
];
+3 -4
View File
@@ -15,19 +15,18 @@ function SelectionCo({
const options = [
{
name: "WINDOWS",
img: "https://images.icon-icons.com/2235/PNG/512/windows_os_logo_icon_134678.png",
img: "/windows.png",
},
{
name: "MACINTOSH",
img: "https://upload.wikimedia.org/wikipedia/commons/f/fa/Apple_logo_black.svg",
img: "apple.png",
},
{
name: "PROFESORES",
img: "https://cdn-icons-png.flaticon.com/512/3135/3135715.png",
img: "teacher.png",
},
];
// ✅ SOLO las inscritas
const opcionesInscritas = options.filter((option) =>
plataformasInscritas.includes(option.name),
);