diff --git a/src/app/api/projects/actions.ts b/src/app/api/projects/actions.ts
index f05ef40..ef39406 100644
--- a/src/app/api/projects/actions.ts
+++ b/src/app/api/projects/actions.ts
@@ -7,7 +7,6 @@ import { Task, TaskGroup } from "../tasks";
export interface CreateProjectInputs {
// Project details
projectCode: string;
- projectSubcode: string;
projectName: string;
projectCategory: string;
projectDescription: string;
@@ -15,6 +14,7 @@ export interface CreateProjectInputs {
// Client details
clientCode: string;
clientName: string;
+ clientContactName: string;
clientPhone: string;
clientEmail: string;
clientSubsidiary: string;
diff --git a/src/app/manifest.ts b/src/app/manifest.ts
index c36a62c..a0f6048 100644
--- a/src/app/manifest.ts
+++ b/src/app/manifest.ts
@@ -9,7 +9,7 @@ export default function manifest(): MetadataRoute.Manifest {
scope: "/",
display: "standalone",
background_color: "#fff",
- theme_color: "#fff",
+ theme_color: "#111927",
icons: [
{
src: "windows11/SmallTile.scale-100.png",
diff --git a/src/components/CreateProject/ProjectClientDetails.tsx b/src/components/CreateProject/ProjectClientDetails.tsx
index cb9d2f7..610c15f 100644
--- a/src/components/CreateProject/ProjectClientDetails.tsx
+++ b/src/components/CreateProject/ProjectClientDetails.tsx
@@ -42,13 +42,6 @@ const ProjectClientDetails: React.FC<{ isActive: boolean }> = ({
{...register("projectCode")}
/>
-
-
-
= ({
+
+
+
= ({
];
const fetchTimesheet = async () => {
- fetchTimesheets();
+ // fetchTimesheets();
// const res = await fetch(`http://localhost:8090/api/timesheets`, {
// // const res = await fetch(`${BASE_API_URL}/timesheets`, {
// method: "GET",
diff --git a/src/components/LoginPage/LoginPage.tsx b/src/components/LoginPage/LoginPage.tsx
index 497d188..eb65647 100644
--- a/src/components/LoginPage/LoginPage.tsx
+++ b/src/components/LoginPage/LoginPage.tsx
@@ -1,14 +1,18 @@
import Grid from "@mui/material/Grid";
import Paper from "@mui/material/Paper";
import LoginForm from "./LoginForm";
+import Logo from "../Logo";
+import { Box } from "@mui/material";
const LoginPage = () => {
return (
-
- test
+
+
+
+