oonyeje d8c20826b0
All checks were successful
continuous-integration/drone/push Build is passing
Merge branch 'Setup-Basic-Website'
2025-03-05 13:23:34 -05:00

19 lines
393 B
TypeScript

import Navbar from './navbar'
import Footer from './footer'
import React from 'react'
export interface LayoutProps {
children: React.JSX.Element
};
export default function Layout({children}: LayoutProps) {
return (
<div style={{height: '100vh', width: '100vw'}}>
<Navbar />
<main style={{height: '86%'}}>
{children}
</main>
<Footer />
</div>
)
}