layout.tsx 460 B

12345678910111213
  1. import "./style.scss";
  2. export default function Layout({ children }: { children: React.ReactNode }) {
  3. return (
  4. <div className="grid grid-rows-[20px_1fr_20px] items-center justify-items-center min-h-screen p-8 pb-20 sm:p-20 font-[family-name:var(--font-geist-sans)]">
  5. {children}
  6. <address>
  7. <hr />
  8. <small>© 2025 PLAYR. All rights reserved.</small>
  9. </address>
  10. </div>
  11. );
  12. }