import clsx from 'clsx' import Head from 'next/head' import type { ReactNode } from 'react' import { FaDesktop } from 'react-icons/fa' import type { PageMetadata } from 'utils/layout' import { DefaultAppSeo } from './DefaultAppSeo' // import { Issuebar } from './Issuebar' import { Sidebar } from './Sidebar' export interface LayoutProps { metadata?: PageMetadata children: ReactNode } export const Layout = ({ children, metadata = {} }: LayoutProps) => { return (
{/* plumbus confetti */} {/*
plumbus carina-nebula
*/} {/* actual layout container */}
{children}
{/* */}

Unsupported Viewport

StargazeTools is best viewed on the big screen.
Please open StargazeTools on your tablet or desktop browser.

) }