feat(WEB-128): desktop and mobile initial wireframe implemented

This commit is contained in:
Simon Emanuelsson
2024-03-18 17:24:17 +01:00
parent fd6c49ac7c
commit b173c2fb11
44 changed files with 957 additions and 19 deletions

View File

@@ -0,0 +1,6 @@
export type StayProps = {
dateArrive: Date
dateDepart: Date
guests: number
hotel: string
}

View File

@@ -0,0 +1,7 @@
type HeadingLevel = "h1" | "h2" | "h3" | "h4" | "h5" | "h6"
export interface HeadingProps extends React.HTMLAttributes<HTMLHeadingElement> {
as?: HeadingLevel
level?: HeadingLevel
uppercase?: boolean
}

View File

@@ -0,0 +1,10 @@
import type { Edges } from "../utils/edges"
import type { Image } from "../../image"
export type LogoQueryData = {
all_header: {
items: {
logoConnection: Edges<Image>
}[]
}
}