diff --git a/app/consulting/[filename]/consulting.tsx b/app/consulting/[filename]/consulting.tsx index fee56185e..9871f9d1a 100644 --- a/app/consulting/[filename]/consulting.tsx +++ b/app/consulting/[filename]/consulting.tsx @@ -1,15 +1,12 @@ "use client"; -import { BookingButton, ClientLogos } from "@/components/blocks"; import { Blocks } from "@/components/blocks-renderer"; -import { Booking } from "@/components/blocks/booking"; import { componentRenderer } from "@/components/blocks/mdxComponentRenderer"; -import MediaCards from "@/components/consulting/mediaCard/mediaCards"; import { Marketing } from "@/components/marketing/Marketing"; -import TechnologyCards from "@/components/technologyCard/technologyCards"; import { TestimonialRow } from "@/components/testimonials/TestimonialRow"; import { Benefits } from "@/components/util/consulting/benefits"; import { Container } from "@/components/util/container"; + import { Section } from "@/components/util/section"; import { removeExtension } from "@/services/client/utils.service"; import { Breadcrumbs } from "app/components/breadcrumb"; @@ -17,7 +14,7 @@ import { tinaField } from "tinacms/dist/react"; import { TinaMarkdown } from "tinacms/dist/rich-text"; export default function Consulting({ props, tinaProps }) { - const { techCards, marketingData, categories, mediaCardProps } = props; + const { categories, marketingData, mediaCardProps, techCards } = props; const { data } = tinaProps; return ( <> @@ -29,11 +26,6 @@ export default function Consulting({ props, tinaProps }) { seoSchema={data.consulting.seo} /> -
- - - -
-

Companies we have worked with

-
- {!!techCards.length && ( -
- - - -
- )} - {!!mediaCardProps.length && ( -
- - - -
- )} + {!!techCards.length && <>} + {!!mediaCardProps.length && <>} ); }