import { html } from '@design.estate/dees-element'; import { injectCssVariables } from '../../00variables.js'; export const demoFunc = () => { injectCssVariables(); return html`

App Layout with Navigation

Welcome

This is a demo of the app layout component with header and bottom navigation.

Features

  • iOS keyboard handling
  • View transitions
  • Safe area support

The app layout provides a grid structure with content area and bottom navigation. It automatically hides navigation when keyboard is visible on mobile.

`; };