From 73e6ac26a215335901ad4f72808a0190b66ef381 Mon Sep 17 00:00:00 2001 From: Nick Leslie Date: Sun, 24 Mar 2024 18:24:06 -0400 Subject: [PATCH] Fixed login screen --- frontend/index.html | 2 +- frontend/src/constants/app.constants.ts | 2 +- frontend/src/routes/index.tsx | 50 ++++++------------------- 3 files changed, 13 insertions(+), 41 deletions(-) diff --git a/frontend/index.html b/frontend/index.html index 1a36b40..6bc1682 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -4,7 +4,7 @@ - Application Tracker + Job Down | Application Tracker
diff --git a/frontend/src/constants/app.constants.ts b/frontend/src/constants/app.constants.ts index e2c12ae..44534db 100644 --- a/frontend/src/constants/app.constants.ts +++ b/frontend/src/constants/app.constants.ts @@ -1,5 +1,5 @@ export default class AppConstants { - public static readonly AppTitle = "Application Tracker"; + public static readonly AppTitle = "Job Down | Application Tracker"; public static readonly JobStatuses = [ { diff --git a/frontend/src/routes/index.tsx b/frontend/src/routes/index.tsx index ebb3f20..df6e423 100644 --- a/frontend/src/routes/index.tsx +++ b/frontend/src/routes/index.tsx @@ -1,5 +1,3 @@ -import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; -import AppConstants from "@/constants/app.constants"; import { auth } from "@/constants/firebase"; import { createFileRoute, useNavigate } from "@tanstack/react-router"; import { useEffect, useState } from "react"; @@ -60,44 +58,18 @@ function Index() { } return ( -
-
- -
- -
+
+
+ logo +

Job Down - Job Application Tracker

-
- ); -} - -const HeroSection = () => { - return ( -
-
- Job tracker -
- logo -

{AppConstants.AppTitle}

-
-
- - - Track your jobs - - -

An easier way to manage your job applications

-
-
+
+
); -}; +}