layout.tsx 416 B

12345678910111213141516171819
  1. import React from 'react'
  2. import type { FC } from 'react'
  3. import type { Metadata } from 'next'
  4. export const metadata: Metadata = {
  5. icons: 'data:,', // prevent browser from using default favicon
  6. }
  7. const Layout: FC<{
  8. children: React.ReactNode
  9. }> = ({ children }) => {
  10. return (
  11. <div className="min-w-[300px] h-full pb-[env(safe-area-inset-bottom)]">
  12. {children}
  13. </div>
  14. )
  15. }
  16. export default Layout