feat(SW-2781): Setup SAS partner site * Add boilerplate for SAS partner site * Fonts * netlify.toml Approved-by: Linus Flood
17 lines
412 B
TypeScript
17 lines
412 B
TypeScript
import { Typography } from "@scandic-hotels/design-system/Typography"
|
|
|
|
import styles from "./page.module.css"
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div className={styles.page}>
|
|
<main>
|
|
<Typography variant="Title/Decorative/lg">
|
|
{/* eslint-disable-next-line formatjs/no-literal-string-in-jsx */}
|
|
<p>hello world</p>
|
|
</Typography>
|
|
</main>
|
|
</div>
|
|
)
|
|
}
|