PWA Notes App

Offline-capable notes with auto-save, markdown preview, and sync status — powered by signals + PWA module

How it works — PWA Module

import { pwa } from 'tina4js/pwa';

pwa.register({
  name: 'Quick Notes',
  shortName: 'Notes',
  themeColor: '#38bdf8',
  cacheStrategy: 'cache-first',
  precache: ['/', '/app.js', '/style.css'],
  offlineRoute: '/offline.html'
});