diff --git a/client/src/components/ui/Leaderboard/List.tsx b/client/src/components/ui/Leaderboard/List.tsx index 2fc2222..5f4cbc9 100644 --- a/client/src/components/ui/Leaderboard/List.tsx +++ b/client/src/components/ui/Leaderboard/List.tsx @@ -26,9 +26,10 @@ export default function List() { try { const res = await fetch(`${API_BASE}/details/groups/`); const data: number[] = await res.json(); - setGroups(data); - if (data.length > 0) { - setSelectedGroup(data[0]); + const filteredGroups = data.filter((groupId) => groupId !== 0); + setGroups(filteredGroups); + if (filteredGroups.length > 0) { + setSelectedGroup(filteredGroups[0]); } } catch (err) { console.error("Failed to fetch groups:", err); diff --git a/client/src/components/ui/Matchdetails/List.tsx b/client/src/components/ui/Matchdetails/List.tsx index 1dd7524..d1acd2d 100644 --- a/client/src/components/ui/Matchdetails/List.tsx +++ b/client/src/components/ui/Matchdetails/List.tsx @@ -126,7 +126,7 @@ export default function MatchDetailsList() {
diff --git a/client/src/components/ui/SchedulePage/EventCard.tsx b/client/src/components/ui/SchedulePage/EventCard.tsx index 48f4ec3..c244d37 100644 --- a/client/src/components/ui/SchedulePage/EventCard.tsx +++ b/client/src/components/ui/SchedulePage/EventCard.tsx @@ -5,7 +5,7 @@ type EventCardProps = { title: string; location: string; time: string; - description: string; + // description: string; imageSrc: string; }; @@ -14,7 +14,7 @@ export default function EventCard({ title, location, time, - description, + // description, imageSrc, }: EventCardProps) { return ( @@ -62,7 +62,7 @@ export default function EventCard({

{time}

-

{description}

+ {/*

{description}

*/} {/* Image */}
diff --git a/client/src/components/ui/SchedulePage/index.tsx b/client/src/components/ui/SchedulePage/index.tsx index 3091e86..16aa962 100644 --- a/client/src/components/ui/SchedulePage/index.tsx +++ b/client/src/components/ui/SchedulePage/index.tsx @@ -6,32 +6,29 @@ import EventCard from "./EventCard"; export default function SchedulePage() { return (
-

Our next competition is:

-

Monday - July 9th, 2025

-
diff --git a/client/src/components/ui/footer.tsx b/client/src/components/ui/footer.tsx index b1161b2..3a003e2 100644 --- a/client/src/components/ui/footer.tsx +++ b/client/src/components/ui/footer.tsx @@ -60,21 +60,19 @@ export default function Footer() { Email:
- info@youthdronetournament.com.au + info@aicodeaustralia.com.au

-

- Venue: -
- Melbourne Convention Centre -
- 1 Convention Centre Pl -
- South Wharf VIC 3006 -

+ { +

+ 64 Mill Point Rd +
+ South Perth WA 6151 +

+ }
{/* Socials */} @@ -82,13 +80,13 @@ export default function Footer() {

Follow Us

diff --git a/client/src/components/ui/navbar.tsx b/client/src/components/ui/navbar.tsx index febfb8b..62c9b64 100644 --- a/client/src/components/ui/navbar.tsx +++ b/client/src/components/ui/navbar.tsx @@ -18,7 +18,7 @@ export default function Navbar() {