diff --git a/apps/website/src/assets/croco_in_cloud.png b/apps/website/src/assets/croco_in_cloud.png new file mode 100644 index 00000000..85eba119 Binary files /dev/null and b/apps/website/src/assets/croco_in_cloud.png differ diff --git a/apps/website/src/assets/pic_phase_3.png b/apps/website/src/assets/pic_phase_3.png index 3983f215..7b5953e0 100644 Binary files a/apps/website/src/assets/pic_phase_3.png and b/apps/website/src/assets/pic_phase_3.png differ diff --git a/apps/website/src/assets/staff_collaboration.png b/apps/website/src/assets/staff_collaboration.png new file mode 100644 index 00000000..858d83e1 Binary files /dev/null and b/apps/website/src/assets/staff_collaboration.png differ diff --git a/apps/website/src/components/icons/CircleCheck.astro b/apps/website/src/components/icons/CircleCheck.astro index 1c3a614b..3b3ab47e 100644 --- a/apps/website/src/components/icons/CircleCheck.astro +++ b/apps/website/src/components/icons/CircleCheck.astro @@ -4,7 +4,7 @@ import classnames from "classnames"; type Props = HTMLAttributes<"svg"> & { classNames?: string }; -const { width, height, classNames } = Astro.props; +const { width, height, classNames, stroke } = Astro.props; --- diff --git a/apps/website/src/components/staff-agmentation/MainContent.astro b/apps/website/src/components/staff-agmentation/MainContent.astro index cd9196a0..3f0c2bb5 100644 --- a/apps/website/src/components/staff-agmentation/MainContent.astro +++ b/apps/website/src/components/staff-agmentation/MainContent.astro @@ -1,13 +1,13 @@ --- import { Image } from "astro:assets"; import { getCollection } from "astro:content"; -import circleCheckIcon from "../../assets/circle-check-icon.svg"; -import paulJeszenszky from "../../assets/paul-jeszenszky.png"; -import picCrocoderTeam from "../../assets/pic-crocoder-team-3362ae.png"; -import quoteIcon from "../../assets/quote-icon.svg"; -import targetIconCorrect from "../../assets/target-icon-correct.svg"; +import crocoIcon from "../../assets/croco_in_cloud.png"; +import idealForIllustration from "../../assets/pic_phase_3.png"; +import staffCollaborationImg from "../../assets/staff_collaboration.png"; import Pill from "../../components/Pill.astro"; import Section from "../../components/Section.astro"; +import { grid_classes } from "../_grid"; +import CircleCheck from "../icons/CircleCheck.astro"; export type MainContent = { pillText: string; @@ -29,7 +29,7 @@ const staffContent = (await getCollection("staff_augmentation")) as { }[]; const contentVariantId = String( - Astro.url.searchParams.get("id") || "backfill-your-developer-gap", + Astro.url.searchParams.get("id") || "backfill-your-developer-gap" ); let content = staffContent.find((c) => c.data.id === contentVariantId); @@ -42,167 +42,132 @@ const { data } = content; ---
-
- +
- - {data.main.pillText} - -

+

+ Illustration of a crocodile in a cloud with laptop +
+
+
+ We're 100% Focused on results +

- {data.main.title_1} - {data.main.title_2} + Flexible, Embedded Engineers, + Ready to Plug-In

- - -
-
- -
- -
-
- Target icon -
-
- { - data.main.aboutUs.map((about) => ( -

- {about} -

- )) - } -
-
- - -
-
-

- We have found the perfect extension of our team with CroCoder. - We operate as one team, celebrating our wins and working - through the challenges together. They "own" the roadmap, - deadlines and outcomes with us — from the ideation and - direction stages through to post-launch optimization. -

-
-
- Paul Jeszenszky -
-
-

- Paul Jeszenszky -

-

- Submix co-founder & CEO -

-
-
-
-
- Quote icon -
-
-
- - -
-

- Ideal for Teams who -

-
- { - content.data.main.fitChecks.map((check) => ( -
-
- Check icon -
-
-

- {check.highlight} -

-

- {check.text} -

-
-
- )) - } -
- -
- CroCoder team + { + data.main.aboutUs.map((p) => ( +

{p}

+ )) + } +
+
+
+

+ Ideal For Teams Who +

+
+ { + data.main.fitChecks.map((c) => ( +
+ +

+ {c.highlight} +
+ {c.text} +

-
-
+ )) + }
+ Illustration of crocodile and developers collaborating
diff --git a/apps/website/src/pages/staff-augmentation.astro b/apps/website/src/pages/staff-augmentation.astro index ea2c8ad5..790b549a 100644 --- a/apps/website/src/pages/staff-augmentation.astro +++ b/apps/website/src/pages/staff-augmentation.astro @@ -33,18 +33,3 @@ const { ogImage = "https://www.crocoder.dev/homepage-metadata-img.png" } =