Chore/BOOK-708 replace title component * chore(BOOK-708): replace title with typography * chore(BOOK-708): replace title with typography * chore(BOOK-708): remove Title from package.json Approved-by: Linus Flood Approved-by: Anton Gunnarsson
28 lines
801 B
TypeScript
28 lines
801 B
TypeScript
import { Typography } from "@scandic-hotels/design-system/Typography"
|
|
|
|
import { getIntl } from "@/i18n"
|
|
|
|
import SectionWrapper from "../SectionWrapper"
|
|
|
|
import styles from "./howItWorks.module.css"
|
|
|
|
import type { HowItWorksProps } from "@/types/components/blocks/dynamicContent"
|
|
|
|
export default async function HowItWorks({ dynamic_content }: HowItWorksProps) {
|
|
const intl = await getIntl()
|
|
return (
|
|
<SectionWrapper dynamic_content={dynamic_content}>
|
|
<section className={styles.container}>
|
|
<Typography variant="Title/sm" className={styles.title}>
|
|
<h3>
|
|
{intl.formatMessage({
|
|
id: "common.howItWorks",
|
|
defaultMessage: "How it works",
|
|
})}
|
|
</h3>
|
|
</Typography>
|
|
</section>
|
|
</SectionWrapper>
|
|
)
|
|
}
|