import { Blob } from "@/components/site/blob"
import { FooterSection } from "@/components/site/footer.section"
import { HeaderSection } from "@/components/site/header.section"
import { BlitzIcon } from "@/components/site/icons"
import { Icon, Stack } from "@chakra-ui/react"
const BlitzIconSection = () => (
)
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode
}>) {
return (
{children}
)
}