From 3bd88a6efb88564d32b81e6a8bf6f661cf364fcc Mon Sep 17 00:00:00 2001 From: Isaac Light Date: Tue, 11 Jun 2024 19:48:33 -0400 Subject: [PATCH] homepage ui styling --- frontend/src/pages/Home.tsx | 1 + frontend/src/pages/RobotDetails.tsx | 1 + 2 files changed, 2 insertions(+) diff --git a/frontend/src/pages/Home.tsx b/frontend/src/pages/Home.tsx index e684eed9..9e22be37 100644 --- a/frontend/src/pages/Home.tsx +++ b/frontend/src/pages/Home.tsx @@ -101,6 +101,7 @@ const Home: React.FC = () => { navigate("/robots/add"); }} > + Make a Robot diff --git a/frontend/src/pages/RobotDetails.tsx b/frontend/src/pages/RobotDetails.tsx index 81c4357f..89f4ad8d 100644 --- a/frontend/src/pages/RobotDetails.tsx +++ b/frontend/src/pages/RobotDetails.tsx @@ -1,3 +1,4 @@ +import { faAlignRight } from "@fortawesome/free-solid-svg-icons"; import { useAlertQueue } from "hooks/alerts"; import { api, Bom } from "hooks/api"; import { useAuthentication } from "hooks/auth";