forked from emre/www_projectmycelium_com
- Added white logo variant and updated header to use dark theme styling - Split text hover effect component into two variants (cursor-following and auto-animated) - Updated button and dropdown components to support transparent backgrounds and white text styling
19 lines
420 B
TypeScript
19 lines
420 B
TypeScript
import { Outlet } from 'react-router-dom'
|
|
import { Footer } from './Footer'
|
|
import { HeaderDark } from './HeaderDark'
|
|
|
|
export function Layout() {
|
|
|
|
return (
|
|
<div className="bg-[#fdfdfd] antialiased relative" style={{ fontFamily: 'var(--font-inter)' }}>
|
|
<div className="relative z-10">
|
|
<HeaderDark />
|
|
<main>
|
|
<Outlet />
|
|
</main>
|
|
<Footer />
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|