feat(SW-285): ship support for dynamic content

This commit is contained in:
Chuma McPhoy
2024-09-02 20:01:48 +02:00
parent e88e4d92bf
commit 1c2a34591b
35 changed files with 5125 additions and 0 deletions
@@ -0,0 +1,13 @@
import Title from "@/components/TempDesignSystem/Text/Title"
import { getIntl } from "@/i18n"
import styles from "./howItWorks.module.css"
export default async function HowItWorks() {
const { formatMessage } = await getIntl()
return (
<section className={styles.container}>
<Title level="h3">{formatMessage({ id: "How it works" })}</Title>
</section>
)
}