aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/templates/page/page.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/templates/page/page.tsx')
-rw-r--r--src/components/templates/page/page.tsx23
1 files changed, 19 insertions, 4 deletions
diff --git a/src/components/templates/page/page.tsx b/src/components/templates/page/page.tsx
index f5f3ea5..b40c2f9 100644
--- a/src/components/templates/page/page.tsx
+++ b/src/components/templates/page/page.tsx
@@ -14,6 +14,12 @@ export type PageProps = HTMLAttributes<HTMLDivElement> & {
*/
breadcrumbs?: BreadcrumbsItem[];
/**
+ * Is it a regular page or a sectioned one?
+ *
+ * @default false
+ */
+ hasSections?: boolean;
+ /**
* Add an extra padding to the body when there are no footer/comments.
*
* Note: this should be refactored when `:has()` pseudo-class will have a
@@ -25,13 +31,22 @@ export type PageProps = HTMLAttributes<HTMLDivElement> & {
};
const PageWithRef: ForwardRefRenderFunction<HTMLDivElement, PageProps> = (
- { breadcrumbs, children, className = '', isBodyLastChild = false, ...props },
+ {
+ breadcrumbs,
+ children,
+ className = '',
+ hasSections = false,
+ isBodyLastChild = false,
+ ...props
+ },
ref
) => {
const wrapperClass = `${styles.wrapper} ${className}`;
- const pageClass = `${styles.page} ${
- styles[isBodyLastChild ? 'page--body-last' : '']
- }`;
+ const pageClass = [
+ styles.page,
+ styles[hasSections ? 'page--full' : 'page--regular'],
+ styles[isBodyLastChild ? 'page--body-last' : ''],
+ ].join(' ');
const intl = useIntl();
const breadcrumbsLabel = intl.formatMessage({
defaultMessage: 'Breadcrumbs',