diff --git a/web_ui/frontend/app/(landing)/page.tsx b/web_ui/frontend/app/(landing)/page.tsx
index 014bd919d..c75db6247 100644
--- a/web_ui/frontend/app/(landing)/page.tsx
+++ b/web_ui/frontend/app/(landing)/page.tsx
@@ -19,33 +19,21 @@
'use client';
import React, { useState, useEffect } from 'react';
-import { Box, Container, Grid, Skeleton, Typography } from '@mui/material';
+import {
+ Box,
+ Container,
+ Grid,
+ List,
+ ListItemButton,
+ ListItemText,
+ Skeleton,
+ Typography,
+} from '@mui/material';
import Link from 'next/link';
import useSWR from 'swr';
import { getEnabledServers } from '@/helpers/util';
import { ServerType } from '@/index';
-function TextCenteredBox({ text }: { text: string }) {
- return (
-
-
-
- {text}
-
-
-
- );
-}
-
export default function Home() {
const { data: enabledServers, isLoading } = useSWR(
'getEnabledServers',
@@ -56,30 +44,26 @@ export default function Home() {
- Pelican Services
+ Active Pelican Services
-
- {isLoading && (
-
-
-
- )}
+
{enabledServers &&
enabledServers.map((service) => {
return (
-
-
-
-
-
+
+
+
);
})}
-
+
);
diff --git a/web_ui/frontend/app/(login)/components/CodeInput.tsx b/web_ui/frontend/app/(login)/components/CodeInput.tsx
index e625645bf..0a2b4330d 100644
--- a/web_ui/frontend/app/(login)/components/CodeInput.tsx
+++ b/web_ui/frontend/app/(login)/components/CodeInput.tsx
@@ -140,9 +140,9 @@ export default function CodeInput({
+
-
- {children}
-
+
+ {children}
+
>
);
}
diff --git a/web_ui/frontend/app/(login)/login/page.tsx b/web_ui/frontend/app/(login)/login/page.tsx
index a597ca523..2f8da6f24 100644
--- a/web_ui/frontend/app/(login)/login/page.tsx
+++ b/web_ui/frontend/app/(login)/login/page.tsx
@@ -108,12 +108,8 @@ const AdminLogin = () => {