feat(SW-285): ship support for dynamic content
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
.container {
|
||||
align-items: center;
|
||||
background-color: var(--UI-Grey-10);
|
||||
border-radius: var(--Corner-radius-xLarge);
|
||||
display: flex;
|
||||
height: 370px;
|
||||
justify-content: center;
|
||||
width: 100%;
|
||||
}
|
||||
@@ -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>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user