Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | 2x 9x | import type { PropsWithChildren } from 'react'
import { LandingBackground } from '../components/LandingBackground'
import { PublicHeader } from '../components/PublicHeader'
import { PublicFooter } from '../components/PublicFooter'
export const PublicLayout = ({ children }: PropsWithChildren) => {
return (
<div className="min-h-screen flex flex-col font-sans transition-colors duration-300 bg-background text-foreground overflow-hidden relative">
{/* Animated Background Mesh */}
<LandingBackground />
{/* Header */}
<PublicHeader />
{/* Main Content */}
<main className="flex-grow flex flex-col relative z-10">{children}</main>
{/* Footer */}
<PublicFooter />
</div>
)
}
|