-
- ) => {
- return (
-
-
- {children}
-
- );
- },
- }}
- markup={props.markup}
- />
+
+
+
+
+
+ ) => {
+ return (
+
+
+ {children}
+
+ );
+ },
+ }}
+ markup={props.markup}
+ />
+
-
+
);
}
diff --git a/packages/ui/src/components/Organisms/PageContent/BlockMedia.tsx b/packages/ui/src/components/Organisms/PageContent/BlockMedia.tsx
index 532bd8697..2d830e2a1 100644
--- a/packages/ui/src/components/Organisms/PageContent/BlockMedia.tsx
+++ b/packages/ui/src/components/Organisms/PageContent/BlockMedia.tsx
@@ -2,14 +2,14 @@ import { BlockMediaFragment, Html, Image } from '@custom/schema';
import React from 'react';
import { UnreachableCaseError } from '../../../utils/unreachable-case-error';
-import { ScrollPop } from '../../Client/ScrollPop';
+import { FadeUp } from '../../Molecules/FadeUp';
export function BlockMedia(props: BlockMediaFragment) {
if (!props.media) {
return null;
}
return (
-
+
-
+
);
}
diff --git a/packages/ui/src/components/Organisms/PageContent/BlockQuote.tsx b/packages/ui/src/components/Organisms/PageContent/BlockQuote.tsx
index a26e8d355..c899d09fb 100644
--- a/packages/ui/src/components/Organisms/PageContent/BlockQuote.tsx
+++ b/packages/ui/src/components/Organisms/PageContent/BlockQuote.tsx
@@ -1,53 +1,59 @@
import { BlockQuoteFragment, Html, Image } from '@custom/schema';
import React from 'react';
+import { FadeUp } from '../../Molecules/FadeUp';
+
export function BlockQuote(props: BlockQuoteFragment) {
return (
-
-
-
-
-
-
- {props.quote &&
}
-
- {props.image && (
-
+
+
+
+
+
+
+
+
-
+
);
}