fix(BOOK-436): Added new section component and deprecated the other
Approved-by: Chuma Mcphoy (We Ahead)
This commit is contained in:
@@ -2,8 +2,8 @@ import * as webHrefs from "@/constants/webHrefs"
|
||||
import { serverClient } from "@/lib/trpc/server"
|
||||
|
||||
import ShortcutsListItems from "@/components/Blocks/ShortcutsList/ShortcutsListItems"
|
||||
import SectionContainer from "@/components/Section/Container"
|
||||
import SectionHeader from "@/components/Section/Header"
|
||||
import { Section } from "@/components/Section"
|
||||
import SectionHeader from "@/components/Section/Header/Deprecated"
|
||||
import { getIntl } from "@/i18n"
|
||||
import { getLang } from "@/i18n/serverContext"
|
||||
|
||||
@@ -99,35 +99,33 @@ export default async function MyPagesOverviewShortcuts() {
|
||||
const scandicFriendsShortcuts = buildFriendsShortcuts(navigation)
|
||||
|
||||
return (
|
||||
<SectionContainer>
|
||||
<section className={styles.section}>
|
||||
<div className={styles.column}>
|
||||
<SectionHeader
|
||||
title={intl.formatMessage({
|
||||
defaultMessage: "Your Membership",
|
||||
})}
|
||||
headingAs="h4"
|
||||
headingLevel="h3"
|
||||
/>
|
||||
<ShortcutsListItems
|
||||
shortcutsListItems={membershipShortcuts}
|
||||
className={styles.shortcuts}
|
||||
/>
|
||||
</div>
|
||||
<div className={styles.column}>
|
||||
<SectionHeader
|
||||
title={intl.formatMessage({
|
||||
defaultMessage: "Scandic Friends Links",
|
||||
})}
|
||||
headingAs="h4"
|
||||
headingLevel="h3"
|
||||
/>
|
||||
<ShortcutsListItems
|
||||
shortcutsListItems={scandicFriendsShortcuts}
|
||||
className={styles.shortcuts}
|
||||
/>
|
||||
</div>
|
||||
</section>
|
||||
</SectionContainer>
|
||||
<Section className={styles.section}>
|
||||
<div className={styles.column}>
|
||||
<SectionHeader
|
||||
title={intl.formatMessage({
|
||||
defaultMessage: "Your Membership",
|
||||
})}
|
||||
headingAs="h4"
|
||||
headingLevel="h3"
|
||||
/>
|
||||
<ShortcutsListItems
|
||||
shortcutsListItems={membershipShortcuts}
|
||||
className={styles.shortcuts}
|
||||
/>
|
||||
</div>
|
||||
<div className={styles.column}>
|
||||
<SectionHeader
|
||||
title={intl.formatMessage({
|
||||
defaultMessage: "Scandic Friends Links",
|
||||
})}
|
||||
headingAs="h4"
|
||||
headingLevel="h3"
|
||||
/>
|
||||
<ShortcutsListItems
|
||||
shortcutsListItems={scandicFriendsShortcuts}
|
||||
className={styles.shortcuts}
|
||||
/>
|
||||
</div>
|
||||
</Section>
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user