+ {/* Application logo */}
+
+
+
+ UNEFA Codex
+
+
+
+ ¡Bienvenido de Vuelta!
+
+
+ {/* Workspace selection section */}
+
+
+
+
+ {/* Entry button */}
+
+
+ {/* Divider with text */}
+
+
+
+ Sigue a BufferRing
+
+
+
+
+ {/* Social media links */}
+
+
+)
+
+export default AsideContent
diff --git a/src/pages/LoginPage/components/LoadingContainer.tsx b/src/pages/LoginPage/components/LoadingContainer.tsx
new file mode 100644
index 0000000..0308ac1
--- /dev/null
+++ b/src/pages/LoginPage/components/LoadingContainer.tsx
@@ -0,0 +1,50 @@
+// LoadingContainer component shows an animated loading screen.
+
+import React from 'react'
+
+import { motion, type Variants } from 'framer-motion'
+
+import Logo from '@components/Logo'
+
+// Props defining animation variants
+interface Props {
+ variants: Variants
+}
+
+// Component that displays a loading overlay with animation
+const LoadingContainer: React.FC