diff --git a/_codux/boards/hero-flex.board.css b/_codux/boards/hero-flex.board.css
deleted file mode 100644
index e69de29..0000000
diff --git a/_codux/boards/hero-flex.board.tsx b/_codux/boards/hero-flex.board.tsx
deleted file mode 100644
index 540a3e0..0000000
--- a/_codux/boards/hero-flex.board.tsx
+++ /dev/null
@@ -1,26 +0,0 @@
-import { createBoard } from '@wixc3/react-board';
-import './hero-flex.board.css';
-
-export default createBoard({
- name: 'HeroFlex',
- Board: () => (
-
-
-
-
Write a Title Here
-
- This is a space to welcome visitors to the site. Grab their attention with copy
- that clearly states what the site is about, and add an engaging image or video.
-
-
Explore
-
-
- ),
- environmentProps: {
- windowWidth: 430,
- },
-});
diff --git a/_codux/boards/hero-image.board.css b/_codux/boards/hero-image.board.css
new file mode 100644
index 0000000..4dfb775
--- /dev/null
+++ b/_codux/boards/hero-image.board.css
@@ -0,0 +1,54 @@
+.root {
+ display: flex;
+ flex-wrap: wrap;
+ max-width: 100%;
+ border-radius: 8px;
+ overflow: hidden;
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
+ font-family: Arial, sans-serif;
+}
+
+.imgBox {
+ flex: 1 1 300px;
+}
+
+.img {
+ width: 100%;
+ height: 100%;
+ object-fit: cover;
+}
+
+.contentBox {
+ flex: 1 1 300px;
+ padding: clamp(15px, 3vw, 30px);
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ gap: clamp(10px, 2vw, 20px);
+}
+
+.title {
+ font-size: calc(5rem + ((1vw - 20px) * 3));
+}
+
+.description {
+ font-size: clamp(14px, 2vw, 18px);
+ line-height: 1.5;
+ text-wrap: pretty;
+}
+
+.exploreButton {
+ padding: clamp(8px, 1.5vw, 12px) clamp(15px, 3vw, 25px);
+ background-color: #000000;
+ border-radius: 30px;
+ font-size: clamp(14px, 2vw, 18px);
+ cursor: pointer;
+ transition: background-color 0.3s ease-out;
+ align-self: flex-start;
+ color: #ffffff;
+}
+
+.addToCartButton:hover {
+ background-color: #848484;
+ color: #ffffff;
+}
diff --git a/_codux/boards/hero-image.board.tsx b/_codux/boards/hero-image.board.tsx
new file mode 100644
index 0000000..6fb961b
--- /dev/null
+++ b/_codux/boards/hero-image.board.tsx
@@ -0,0 +1,29 @@
+import './hero-image.board.css';
+import { createBoard } from '@wixc3/react-board';
+
+export default createBoard({
+ name: 'Hero Image',
+ Board: () => (
+
+
+
+
+
+
Write a Title Here
+
+ This is a space to welcome visitors to the site. Grab their attention with copy
+ that clearly states what the site is about, and add an engaging image or video.
+
+
Explore
+
+
+ ),
+ environmentProps: {
+ windowWidth: 1269,
+ windowHeight: 760,
+ },
+});
diff --git a/_codux/boards/team-image.board.css b/_codux/boards/team-image.board.css
new file mode 100644
index 0000000..8d0ee99
--- /dev/null
+++ b/_codux/boards/team-image.board.css
@@ -0,0 +1,84 @@
+.root {
+ display: flex;
+ padding: clamp(3rem, 1rem + 2vw, 1.25rem);
+ flex-direction: column;
+ align-items: center;
+}
+
+.teamCard {
+ display: flex;
+ flex-wrap: wrap;
+ max-width: 100%;
+ border-radius: 8px;
+ overflow: hidden;
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
+ font-family: Arial, sans-serif;
+ flex-direction: column;
+ flex-grow: 1;
+ flex-shrink: 1;
+ flex-basis: 120px;
+ min-width: 300px;
+ cursor: pointer;
+ transition: box-shadow .3s;
+}
+
+.imgBox {
+ flex: 1 1 300px;
+}
+
+.img {
+ width: 100%;
+ height: 100%;
+ object-fit: cover;
+}
+
+.contentBox {
+ padding: clamp(15px, 3vw, 30px);
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ gap: clamp(10px, 2vw, 4px);
+}
+
+.teamTitle {
+ font-size: calc(2.5rem + ((1vw - 18px) * 2));
+}
+
+.description {
+ font-size: clamp(12px, 2vw, 18px);
+ line-height: 1.5;
+ text-wrap: pretty;
+}
+
+.exploreButton {
+ padding: clamp(8px, 1.5vw, 12px) clamp(15px, 3vw, 25px);
+ background-color: #000000;
+ border-radius: 30px;
+ font-size: clamp(14px, 2vw, 18px);
+ cursor: pointer;
+ transition: background-color 0.3s ease-out;
+ align-self: flex-start;
+ color: #ffffff;
+}
+
+.addToCartButton:hover {
+ background-color: #848484;
+ color: #ffffff;
+}
+.teams {
+ display: flex;
+ margin-top: 4vh;
+ flex-wrap: wrap;
+ max-width: 1920px;
+ gap: clamp(2rem, 0.2073rem + 1.4634vw, 1.25rem);
+}
+.title {
+ font-family: Arial, sans-serif;
+ font-size: calc(2.5rem + ((1vw - 4px) * 2));
+ text-align: center;
+ font-weight: 700;
+ text-wrap: pretty;
+}
+.teamCard:hover {
+ box-shadow: 0 6px 30px rgba(33, 33, 33, 0.2);
+}
diff --git a/_codux/boards/team-image.board.tsx b/_codux/boards/team-image.board.tsx
new file mode 100644
index 0000000..0fd48e8
--- /dev/null
+++ b/_codux/boards/team-image.board.tsx
@@ -0,0 +1,68 @@
+import './team-image.board.css';
+import { createBoard } from '@wixc3/react-board';
+
+export default createBoard({
+ name: 'TeamImage',
+ Board: () => (
+
+
+ Write a Title Here.
+ Click to Edit and Add Your Own Text.
+
+
+
+
+
+
+
+
Item Title
+
+ Use this space to promote the business, its products or its services.
+
+
Explore
+
+
+
+
+
+
+
+
Item Title
+
+ Use this space to promote the business, its products or its services.
+
+
Explore
+
+
+
+
+
+
+
+
Item Title
+
+ Use this space to promote the business, its products or its services.
+
+
Explore
+
+
+
+
+ ),
+ environmentProps: {
+ windowWidth: 1843,
+ windowHeight: 1063,
+ },
+});