-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'PennyWalker-patch-3' of https://github.com/SSWConsultin…
…g/SSW.Website into PennyWalker-patch-3
- Loading branch information
Showing
84 changed files
with
5,785 additions
and
2,845 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
.tina/__generated__ | ||
tina/__generated__ | ||
.next | ||
node_modules | ||
dist | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
.tina/__generated__ | ||
tina/__generated__ | ||
.next | ||
node_modules | ||
content | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
"use client"; | ||
|
||
import { Blocks } from "@/components/blocks-renderer"; | ||
import { PreFooter } from "@/components/layout/footer/pre-footer"; | ||
import { SectionColor } from "@/components/util/constants/styles"; | ||
import { Container } from "@/components/util/container"; | ||
import { Section } from "@/components/util/section"; | ||
import { Consultingv2Query } from "@/tina/types"; | ||
|
||
type ConsultingV2PageProps<T> = { | ||
tinaProps: { | ||
data: Consultingv2Query; | ||
}; | ||
props: T; | ||
}; | ||
|
||
export default function ConsultingV2({ | ||
tinaProps, | ||
}: ConsultingV2PageProps<object>) { | ||
const { data } = tinaProps; | ||
|
||
return ( | ||
<> | ||
<div className="dark flex h-full flex-col"> | ||
<Section color={SectionColor.ToggleLightMode}> | ||
<Container width="custom" size="small" className="w-full sm:py-12"> | ||
<div className="w-full"> | ||
{data.consultingv2.blocks ? ( | ||
<Blocks | ||
prefix={"Consultingv2Blocks"} | ||
blocks={data.consultingv2.blocks} | ||
/> | ||
) : ( | ||
<></> | ||
)} | ||
</div> | ||
</Container> | ||
</Section> | ||
<PreFooter /> | ||
</div> | ||
</> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.