diff --git a/backend/src/db/seeders/20231127130745-sample-data.js b/backend/src/db/seeders/20231127130745-sample-data.js index 98c2b91..8321e11 100644 --- a/backend/src/db/seeders/20231127130745-sample-data.js +++ b/backend/src/db/seeders/20231127130745-sample-data.js @@ -65,7 +65,7 @@ const InventoryData = [ quantity: 150, - status: 'returned', + status: 'available', // type code here for "relation_one" field }, @@ -85,7 +85,7 @@ const InventoryData = [ quantity: 200, - status: 'returned', + status: 'available', // type code here for "relation_one" field }, @@ -155,7 +155,7 @@ const QualityControlsData = [ check_date: new Date('2023-10-12T16:00:00Z'), - passed: false, + passed: true, // type code here for "relation_one" field }, @@ -293,19 +293,19 @@ const StaffData = [ { // type code here for "relation_one" field - employee_name: 'Hans Bethe', + employee_name: 'Albrecht von Haller', }, { // type code here for "relation_one" field - employee_name: 'Alfred Kinsey', + employee_name: 'Alfred Binet', }, { // type code here for "relation_one" field - employee_name: 'Louis Pasteur', + employee_name: 'Jonas Salk', }, ]; @@ -313,7 +313,7 @@ const ClientsData = [ { // type code here for "relation_one" field - client_name: 'Christiaan Huygens', + client_name: 'Alfred Binet', date_registered: new Date(Date.now()), @@ -323,7 +323,7 @@ const ClientsData = [ { // type code here for "relation_one" field - client_name: 'Hermann von Helmholtz', + client_name: 'Albert Einstein', date_registered: new Date(Date.now()), @@ -333,7 +333,7 @@ const ClientsData = [ { // type code here for "relation_one" field - client_name: 'Antoine Laurent Lavoisier', + client_name: 'Arthur Eddington', date_registered: new Date(Date.now()), diff --git a/frontend/src/components/WebPageComponents/Footer.tsx b/frontend/src/components/WebPageComponents/Footer.tsx index ab92e86..3833078 100644 --- a/frontend/src/components/WebPageComponents/Footer.tsx +++ b/frontend/src/components/WebPageComponents/Footer.tsx @@ -18,7 +18,7 @@ export default function WebSiteFooter({ const borders = useAppSelector((state) => state.style.borders); const websiteHeder = useAppSelector((state) => state.style.websiteHeder); - const style = FooterStyle.WITH_PAGES; + const style = FooterStyle.WITH_PROJECT_NAME; const design = FooterDesigns.DEFAULT_DESIGN; diff --git a/frontend/src/components/WebPageComponents/Header.tsx b/frontend/src/components/WebPageComponents/Header.tsx index ae27257..2620306 100644 --- a/frontend/src/components/WebPageComponents/Header.tsx +++ b/frontend/src/components/WebPageComponents/Header.tsx @@ -19,7 +19,7 @@ export default function WebSiteHeader({ const websiteHeder = useAppSelector((state) => state.style.websiteHeder); const borders = useAppSelector((state) => state.style.borders); - const style = HeaderStyle.PAGES_RIGHT; + const style = HeaderStyle.PAGES_LEFT; const design = HeaderDesigns.DESIGN_DIVERSITY; return ( diff --git a/frontend/src/pages/web_pages/about.tsx b/frontend/src/pages/web_pages/about.tsx index 4bbdee9..5616321 100644 --- a/frontend/src/pages/web_pages/about.tsx +++ b/frontend/src/pages/web_pages/about.tsx @@ -145,7 +145,7 @@ export default function WebSite() {