diff --git a/apps/contact/app/layout.tsx b/apps/contact/app/layout.tsx index 1506048c..13ae3fd1 100644 --- a/apps/contact/app/layout.tsx +++ b/apps/contact/app/layout.tsx @@ -1,13 +1,9 @@ -export default function Layout({ - children, -}: { - children: React.ReactNode -}) { +export default function Layout({ children }: { children: React.ReactNode }) { return (
{children}
- ) + ); } diff --git a/apps/contact/app/page.tsx b/apps/contact/app/page.tsx index 63c50100..e8b845c7 100644 --- a/apps/contact/app/page.tsx +++ b/apps/contact/app/page.tsx @@ -1,7 +1,3 @@ export default function Home() { - return ( -
- THIS IS API -
- ); + return
THIS IS API
; } diff --git a/apps/website/src/components/Avatar.astro b/apps/website/src/components/Avatar.astro index 961d4c39..05f7eb61 100644 --- a/apps/website/src/components/Avatar.astro +++ b/apps/website/src/components/Avatar.astro @@ -6,7 +6,7 @@ const optimizedImage = await getImage({ src: image.default, width: 72, height: 72, - format: 'webp' + format: "webp", }); --- diff --git a/apps/website/src/components/BookACallForm.astro b/apps/website/src/components/BookACallForm.astro index e52a4bbc..bce582a6 100644 --- a/apps/website/src/components/BookACallForm.astro +++ b/apps/website/src/components/BookACallForm.astro @@ -11,10 +11,7 @@ export interface Props { eventType?: string; } -const { - calLink = "team/crocoder/hello", - eventType = "hello", -} = Astro.props; +const { calLink = "team/crocoder/hello", eventType = "hello" } = Astro.props; --- diff --git a/apps/website/src/components/Field.astro b/apps/website/src/components/Field.astro index 0bafef87..af82df95 100644 --- a/apps/website/src/components/Field.astro +++ b/apps/website/src/components/Field.astro @@ -41,7 +41,7 @@ const { classNames, labelProps, label, errorText } = Astro.props; { "after:h-[46px]": !Astro.props.isTextArea, "after:h-[139px] after:max-h-[139px]": Astro.props.isTextArea, - } + }, )} > { @@ -83,7 +83,7 @@ const { classNames, labelProps, label, errorText } = Astro.props; focus:border-transparent text-secondary `, - Astro.props.textAreaProps.class + Astro.props.textAreaProps.class, )} {...Astro.props.textAreaProps} /> @@ -133,7 +133,7 @@ const { classNames, labelProps, label, errorText } = Astro.props; { "h-[48px] top-[23px]": !Astro.props.isTextArea, "h-[142px] top-[23px]": Astro.props.isTextArea, - } + }, )} > diff --git a/apps/website/src/components/Pill.astro b/apps/website/src/components/Pill.astro index 1de01c07..3a1f41c5 100644 --- a/apps/website/src/components/Pill.astro +++ b/apps/website/src/components/Pill.astro @@ -7,7 +7,7 @@ const { className } = Astro.props;
diff --git a/apps/website/src/components/Values.astro b/apps/website/src/components/Values.astro index 26f102a8..576caeb8 100644 --- a/apps/website/src/components/Values.astro +++ b/apps/website/src/components/Values.astro @@ -30,7 +30,7 @@ const { src } = await getImage({ src: bgImage, alt: "", width: 1920, - format: 'avif', + format: "avif", }); --- diff --git a/apps/website/src/components/cto/Hero.astro b/apps/website/src/components/cto/Hero.astro index 5a920873..c6fc4845 100644 --- a/apps/website/src/components/cto/Hero.astro +++ b/apps/website/src/components/cto/Hero.astro @@ -32,7 +32,8 @@ import heroImage from "../../assets/cto-hero.png";

- A Web Development Consultancy Helping CTOs Minimize Their Hands-on Involvement in Daily Operations + A Web Development Consultancy Helping CTOs Minimize Their Hands-on + Involvement in Daily Operations

const bookACallActionHero = document.getElementById( - "book-a-call-action-hero" + "book-a-call-action-hero", ); function handleBookACallHero() { diff --git a/apps/website/src/components/cto/InfoBlock.astro b/apps/website/src/components/cto/InfoBlock.astro index a21a7d00..81a8f90d 100644 --- a/apps/website/src/components/cto/InfoBlock.astro +++ b/apps/website/src/components/cto/InfoBlock.astro @@ -5,7 +5,12 @@ const { icon, title, description, className } = Astro.props; ---
- +

diff --git a/apps/website/src/components/cto/ServiceBlock.astro b/apps/website/src/components/cto/ServiceBlock.astro index 447fdd4a..34d04251 100644 --- a/apps/website/src/components/cto/ServiceBlock.astro +++ b/apps/website/src/components/cto/ServiceBlock.astro @@ -1,19 +1,43 @@ --- import classnames from "classnames"; -const { image, iconFirst, iconSecond, sectionTitle, titleFirst, titleSecond, descriptionFirst, descriptionSecond, classNames } = Astro.props; +const { + image, + iconFirst, + iconSecond, + sectionTitle, + titleFirst, + titleSecond, + descriptionFirst, + descriptionSecond, + classNames, +} = Astro.props; --- -
+
-

+

{sectionTitle}

- -

+ +

{titleFirst}

@@ -21,8 +45,15 @@ const { image, iconFirst, iconSecond, sectionTitle, titleFirst, titleSecond, des
- -

+ +

{titleSecond}

@@ -31,7 +62,9 @@ const { image, iconFirst, iconSecond, sectionTitle, titleFirst, titleSecond, des
- CroCoder team member illustration + CroCoder team member illustration
diff --git a/apps/website/src/components/cto/Testimonial.astro b/apps/website/src/components/cto/Testimonial.astro index 24b07c79..86c8e06d 100644 --- a/apps/website/src/components/cto/Testimonial.astro +++ b/apps/website/src/components/cto/Testimonial.astro @@ -7,7 +7,7 @@ import raphaelBauerBubble from "../../assets/raphael-bauer-bubble.png"; const optimizedTestimonial = await getImage({ src: raphaelBauerBubble, width: 569, - height: 547 + height: 547, }); --- diff --git a/apps/website/src/components/cto/Values.astro b/apps/website/src/components/cto/Values.astro index eaeadd20..a65916ee 100644 --- a/apps/website/src/components/cto/Values.astro +++ b/apps/website/src/components/cto/Values.astro @@ -11,13 +11,13 @@ import douglasIcon from "../../assets/douglas-icon.png"; const optimizedDouglasIcon = await getImage({ src: douglasIcon, width: 72, - height: 72 + height: 72, }); const optimizedTeamsImage = await getImage({ src: teamsImage, width: 560, - height: 326 + height: 326, }); --- @@ -114,7 +114,12 @@ const optimizedTeamsImage = await getImage({ making process. Working with them is easy. They are organised, communicative, and have a great internal culture.

- +
diff --git a/apps/website/src/components/navigation.astro b/apps/website/src/components/navigation.astro index 345b3937..d66bf9c7 100644 --- a/apps/website/src/components/navigation.astro +++ b/apps/website/src/components/navigation.astro @@ -10,7 +10,7 @@ const optimizedLogo = await getImage({ format: "webp", }); -const isContact = Astro.url.pathname === "/contact" +const isContact = Astro.url.pathname === "/contact"; ---