Skip to content

Commit dfbc89a

Browse files
Will-Frontend (#78)
2 parents c194804 + 21f9e7a commit dfbc89a

File tree

12 files changed

+205
-102
lines changed

12 files changed

+205
-102
lines changed

package-lock.json

Lines changed: 144 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
"react": "^18.3.1",
2323
"react-cookie": "^7.2.0",
2424
"react-dom": "^18.3.1",
25-
"react-helmet-async": "^2.0.5",
2625
"react-hook-form": "^7.53.0",
2726
"react-icons": "^5.3.0",
2827
"react-router": "^6.26.2",
@@ -60,15 +59,14 @@
6059
"@eslint/js": "^9.8.0",
6160
"@svgr/webpack": "^6.2.1",
6261
"daisyui": "^4.12.14",
63-
"postcss": "^8.4.47",
64-
"@eslint/js": "^9.8.0",
6562
"eslint-config-react-app": "^7.0.1",
6663
"eslint-define-config": "^2.1.0",
6764
"eslint-plugin-react": "^7.37.2",
6865
"globals": "^15.9.0",
6966
"postcss": "^8.4.47",
67+
"react-helmet-async": "^2.0.5",
7068
"tailwindcss": "^3.4.3",
71-
"typescript": "^5.5.4",
69+
"typescript": "^4.9.5",
7270
"typescript-eslint": "^8.0.0"
7371
},
7472
"overrides": {

src/App.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from "react";
22
import { Routes, Route } from "react-router-dom";
3-
import "./App.css";
3+
import "./style/App.css";
44
import Home from "./shared/pages/Home.tsx";
55
import PageNotFound from "./shared/pages/404.tsx";
66
import MainNavigation from "./shared/components/Navigation/MainNavigation.tsx";
@@ -26,7 +26,7 @@ function App() {
2626
<HelmetProvider>
2727
<section>
2828
<MainNavigation authenticated={authenticated} />
29-
<main className=" container-xl ">
29+
<main className="container-xl p-8">
3030
<Routes>
3131
<Route path="/" element={<Home />} />
3232
<Route path="/health" element={<p>App is Healthy</p>} />

src/index.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import React from "react";
22
import ReactDOM from "react-dom/client";
3-
import "./index.css";
3+
import "./style/index.css";
4+
import "./style/general.css";
45

56
import App from "./App.tsx";
67
import reportWebVitals from "./reportWebVitals.js";

src/shared/components/Navigation/MainNavigation.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ export default function MainNavigation(authenticated) {
3636
</div>
3737
<div className="mainnav-desc2 sm:items-stretch sm:justify-start">
3838
<div className="mainnav-title-link">
39-
<Link to="/" className="no-underline text-blue-700">
40-
Labconnect
39+
<Link to="/" className="blue-link hover:text-blue-900 focus:text-blue-900">
40+
LabConnect
4141
</Link>
4242
</div>
4343
<div className="hidden sm:ml-6 sm:block">

0 commit comments

Comments
 (0)