mirror of
https://github.com/tomru/pfadi-bussle.git
synced 2026-03-03 22:47:15 +01:00
14 lines
331 B
TypeScript
14 lines
331 B
TypeScript
import React from 'react'
|
|
import Footer from '../components/footer'
|
|
import Header from '../components/header'
|
|
|
|
export default function Home({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<>
|
|
<Header />
|
|
<main className="main max-w-7xl mx-auto px-4 sm:px-6">{children}</main>
|
|
<Footer />
|
|
</>
|
|
)
|
|
}
|