degmods.com/src/layout/index.tsx

18 lines
329 B
TypeScript
Raw Normal View History

2024-07-11 11:45:59 +00:00
import { Outlet } from 'react-router-dom'
2024-07-10 19:30:03 +00:00
import { Footer } from './footer'
import { Header } from './header'
import { SocialNav } from './socialNav'
2024-10-15 13:26:18 +00:00
import { Head } from './head'
2024-07-10 18:31:54 +00:00
export const Layout = () => {
return (
2024-07-11 12:52:48 +00:00
<>
2024-10-15 13:26:18 +00:00
<Head />
2024-07-10 18:31:54 +00:00
<Header />
2024-07-11 11:45:59 +00:00
<Outlet />
2024-07-10 19:30:03 +00:00
<Footer />
<SocialNav />
2024-07-11 12:52:48 +00:00
</>
2024-07-10 18:31:54 +00:00
)
}