You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tempest.dev/app/layout.tsx

44 lines
991 B
TypeScript

import React, { ReactNode } from 'react';
import 'victormono'
import '~/styles/layout.css'
import '~/styles/text.css'
import Image from 'components/Image'
import Header from '~/components/layout/Header'
import Footer from '~/components/layout/Footer'
const header = 'images/aurora-1197753.jpg'
export default function SiteLayout({ children }: { children: ReactNode }) {
const headerImage = (
<Image
src={header}
alt=""
role="presentation"
width={[2560,1920,1280,800,600]}
sizes={`
(max-width: 2560) 100vw,
(max-width: 1920) 100vw,
(max-width: 1280) 100vw,
(max-width: 800) 100vw,
(max-width: 600) 100vw,
`}
/>
)
return (
<html>
<head>
<title>tempest.dev</title>
<link rel="me" href="https://social.treehouse.systems/@tempest"/>
</head>
<body>
<Header headerImage={headerImage} />
{children}
<Footer />
</body>
</html>
)
}