Skip to content

Commit

Permalink
Fixing the import issues for the rest of components
Browse files Browse the repository at this point in the history
  • Loading branch information
amankumarrr committed Oct 24, 2024
1 parent a68ad63 commit 56efe1c
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions app/consulting/[filename]/consulting.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
"use client";

import { Blocks } from "@/components/blocks-renderer";
import { Booking } from "@/components/blocks/booking";
import { BuiltOnAzure } from "@/components/blocks/builtOnAzure";
import { ClientLogos } from "@/components/blocks/clientLogos";
import { componentRenderer } from "@/components/blocks/mdxComponentRenderer";
import { BookingButton } from "@/components/bookingButton/bookingButton";
import MediaCards from "@/components/consulting/mediaCard/mediaCards";
import { Marketing } from "@/components/marketing/Marketing";
import TechnologyCards from "@/components/technologyCard/technologyCards";
Expand All @@ -29,6 +32,11 @@ export default function Consulting({ props, tinaProps }) {
seoSchema={data.consulting.seo}
/>
</Section>
<Section className="w-full" color="black">
<Booking {...data.consulting.booking}>
<BookingButton />
</Booking>
</Section>
<Section
color="black"
className={"prose-dark border-y-4 border-y-sswRed text-center"}
Expand Down Expand Up @@ -64,6 +72,11 @@ export default function Consulting({ props, tinaProps }) {
categories={categories}
tagline={data.consulting.testimonials?.tagline}
/>
<BookingButton
data={{
containerClass: "mt-20",
}}
/>
</Container>
</Section>
<Marketing content={marketingData} />
Expand All @@ -90,6 +103,9 @@ export default function Consulting({ props, tinaProps }) {
</Container>
</Section>
)}
<Section>
<BuiltOnAzure data={{ backgroundColor: "default" }} />
</Section>
</>
);
}

0 comments on commit 56efe1c

Please sign in to comment.