diff --git a/backend/pb_migrations/1776259840_updated_users.js b/backend/pb_migrations/1776259840_updated_users.js
new file mode 100644
index 0000000..c55d5c8
--- /dev/null
+++ b/backend/pb_migrations/1776259840_updated_users.js
@@ -0,0 +1,48 @@
+///
+migrate((app) => {
+ const collection = app.findCollectionByNameOrId("_pb_users_auth_")
+
+ // add field
+ collection.fields.addAt(8, new Field({
+ "autogeneratePattern": "",
+ "hidden": false,
+ "id": "text1542800728",
+ "max": 0,
+ "min": 0,
+ "name": "field",
+ "pattern": "",
+ "presentable": false,
+ "primaryKey": false,
+ "required": false,
+ "system": false,
+ "type": "text"
+ }))
+
+ // add field
+ collection.fields.addAt(9, new Field({
+ "autogeneratePattern": "",
+ "hidden": false,
+ "id": "text596812118",
+ "max": 0,
+ "min": 0,
+ "name": "firstName",
+ "pattern": "",
+ "presentable": false,
+ "primaryKey": false,
+ "required": false,
+ "system": false,
+ "type": "text"
+ }))
+
+ return app.save(collection)
+}, (app) => {
+ const collection = app.findCollectionByNameOrId("_pb_users_auth_")
+
+ // remove field
+ collection.fields.removeById("text1542800728")
+
+ // remove field
+ collection.fields.removeById("text596812118")
+
+ return app.save(collection)
+})
diff --git a/backend/pb_migrations/1776259856_updated_users.js b/backend/pb_migrations/1776259856_updated_users.js
new file mode 100644
index 0000000..885e536
--- /dev/null
+++ b/backend/pb_migrations/1776259856_updated_users.js
@@ -0,0 +1,29 @@
+///
+migrate((app) => {
+ const collection = app.findCollectionByNameOrId("_pb_users_auth_")
+
+ // add field
+ collection.fields.addAt(10, new Field({
+ "autogeneratePattern": "",
+ "hidden": false,
+ "id": "text2434144904",
+ "max": 0,
+ "min": 0,
+ "name": "lastName",
+ "pattern": "",
+ "presentable": false,
+ "primaryKey": false,
+ "required": false,
+ "system": false,
+ "type": "text"
+ }))
+
+ return app.save(collection)
+}, (app) => {
+ const collection = app.findCollectionByNameOrId("_pb_users_auth_")
+
+ // remove field
+ collection.fields.removeById("text2434144904")
+
+ return app.save(collection)
+})
diff --git a/backend/pb_migrations/1776260244_updated_users.js b/backend/pb_migrations/1776260244_updated_users.js
new file mode 100644
index 0000000..f65096b
--- /dev/null
+++ b/backend/pb_migrations/1776260244_updated_users.js
@@ -0,0 +1,29 @@
+///
+migrate((app) => {
+ const collection = app.findCollectionByNameOrId("_pb_users_auth_")
+
+ // remove field
+ collection.fields.removeById("text1542800728")
+
+ return app.save(collection)
+}, (app) => {
+ const collection = app.findCollectionByNameOrId("_pb_users_auth_")
+
+ // add field
+ collection.fields.addAt(10, new Field({
+ "autogeneratePattern": "",
+ "hidden": false,
+ "id": "text1542800728",
+ "max": 0,
+ "min": 0,
+ "name": "field",
+ "pattern": "",
+ "presentable": false,
+ "primaryKey": false,
+ "required": false,
+ "system": false,
+ "type": "text"
+ }))
+
+ return app.save(collection)
+})
diff --git a/frontend/src/components/layout/header/Header.astro b/frontend/src/components/layout/header/Header.astro
index a5926d6..f86c75c 100644
--- a/frontend/src/components/layout/header/Header.astro
+++ b/frontend/src/components/layout/header/Header.astro
@@ -2,6 +2,8 @@
import Logo from "./Logo.astro";
import Navbar from "./Navbar.astro";
import MobileMenu from "./MobileMenu.astro";
+import LoginButton from "./LoginButton.astro";
+import UserMenu from "./UserMenu.astro";
import { COMPANY } from "@constants";
---
@@ -20,10 +22,11 @@ import { COMPANY } from "@constants";
-
+
-