Merged in feat/sw-2781-partner-sas-site-setup (pull request #2432)

feat(SW-2781): Setup SAS partner site

* Add boilerplate for SAS partner site

* Fonts

* netlify.toml


Approved-by: Linus Flood
This commit is contained in:
Anton Gunnarsson
2025-06-26 13:45:15 +00:00
parent e572d9e7e9
commit 133f7b3d75
92 changed files with 72046 additions and 2 deletions

View File

@@ -0,0 +1,3 @@
body {
background: rebeccapurple;
}

View File

@@ -0,0 +1,29 @@
import "@scandic-hotels/design-system/style.css"
import "@scandic-hotels/design-system/fonts.css"
import "@/public/_static/css/design-system-new-deprecated.css"
import "./globals.css"
import type { Metadata } from "next"
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
}
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode
}>) {
return (
<html lang="en">
<head>
{/* eslint-disable-next-line @next/next/no-css-tags */}
<link rel="stylesheet" href="/_static/css/core.css" />
{/* eslint-disable-next-line @next/next/no-css-tags */}
<link rel="stylesheet" href="/_static/css/scandic.css" />
</head>
<body className="scandic">{children}</body>
</html>
)
}

View File

@@ -0,0 +1,3 @@
.page {
color: white;
}

View File

@@ -0,0 +1,16 @@
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>
)
}