Skip to content

Commit

Permalink
style: style adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
Luqmaan Essop committed May 8, 2024
1 parent 7b4a745 commit 3fc24f1
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions packages/ui/src/components/Organisms/PageDisplay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,9 @@ export function PageDisplay(page: PageFragment) {
return (
<PageTransition>
<div>
{page.hero ? (
<>
<PageHero {...page.hero} />
<BreadCrumbs className="mx-auto max-w-3xl" />
</>
) : null}
{page.hero && <PageHero {...page.hero} />}
<div className="bg-white pt-5 pb-12 lg:px-8">
<BreadCrumbs />
<BreadCrumbs className="mx-auto max-w-3xl" />
<div className="mx-auto max-w-3xl text-base leading-7 text-gray-700">
{page?.content?.filter(isTruthy).map((block, index) => {
switch (block.__typename) {
Expand Down

0 comments on commit 3fc24f1

Please sign in to comment.