diff --git a/backend/src/db/seeders/20231127130745-sample-data.js b/backend/src/db/seeders/20231127130745-sample-data.js index d6390e2..3744c46 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: 'available', + status: 'returned', // type code here for "relation_one" field }, @@ -75,7 +75,7 @@ const InventoryData = [ quantity: 75, - status: 'returned', + status: 'available', // type code here for "relation_one" field }, @@ -85,7 +85,7 @@ const InventoryData = [ quantity: 200, - status: 'available', + status: 'returned', // type code here for "relation_one" field }, @@ -293,19 +293,19 @@ const StaffData = [ { // type code here for "relation_one" field - employee_name: 'Dmitri Mendeleev', + employee_name: 'Karl Landsteiner', }, { // type code here for "relation_one" field - employee_name: 'August Kekule', + employee_name: 'Albert Einstein', }, { // type code here for "relation_one" field - employee_name: 'Carl Linnaeus', + employee_name: 'Hans Selye', }, ]; @@ -313,7 +313,7 @@ const ClientsData = [ { // type code here for "relation_one" field - client_name: 'Louis Pasteur', + client_name: 'Carl Gauss (Karl Friedrich Gauss)', date_registered: new Date(Date.now()), @@ -323,7 +323,7 @@ const ClientsData = [ { // type code here for "relation_one" field - client_name: 'Robert Koch', + client_name: 'Leonard Euler', date_registered: new Date(Date.now()), @@ -333,7 +333,7 @@ const ClientsData = [ { // type code here for "relation_one" field - client_name: 'Euclid', + client_name: 'Charles Darwin', date_registered: new Date(Date.now()), diff --git a/frontend/src/components/WebPageComponents/Footer.tsx b/frontend/src/components/WebPageComponents/Footer.tsx index 3833078..ab92e86 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_PROJECT_NAME; + const style = FooterStyle.WITH_PAGES; const design = FooterDesigns.DEFAULT_DESIGN; diff --git a/frontend/src/components/WebPageComponents/Header.tsx b/frontend/src/components/WebPageComponents/Header.tsx index 1c882e7..2620306 100644 --- a/frontend/src/components/WebPageComponents/Header.tsx +++ b/frontend/src/components/WebPageComponents/Header.tsx @@ -19,9 +19,9 @@ 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.DEFAULT_DESIGN; + const design = HeaderDesigns.DESIGN_DIVERSITY; return (