From 66a755f00686fe7f624a5877aff72a376ba85618 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Saint-G=C3=A9rand?= Date: Sun, 16 Nov 2025 16:08:34 +0100 Subject: [PATCH] [apps] create beataptic page --- web/src/app/apps/beataptic/page.tsx | 56 +++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 web/src/app/apps/beataptic/page.tsx diff --git a/web/src/app/apps/beataptic/page.tsx b/web/src/app/apps/beataptic/page.tsx new file mode 100644 index 0000000..519c908 --- /dev/null +++ b/web/src/app/apps/beataptic/page.tsx @@ -0,0 +1,56 @@ +import type { Metadata } from "next"; + +export const metadata: Metadata = { + title: "Beataptic - Thomas Saint-Gérand", + description: + "Beataptic - An Apple Watch metronome app combining haptic feedback with optional audio.", +}; + +const BeatapticSupport = async () => { + "use cache"; + return ( +
+

Beataptic

+ +
+

About

+

+ Beataptic is a metronome for Apple Watch that combines haptic feedback + with optional audio. Perfect for musicians, dancers, and anyone who + needs rhythm guidance. +

+
+ +
+

Features

+
    +
  • Haptic and audio feedback (use either or both)
  • +
  • 30-208 BPM tempo range
  • +
  • 1-8 beats per measure
  • +
  • Adjustable volume
  • +
  • Settings automatically saved
  • +
+
+ +
+

Contact

+

For support or feedback, please contact:

+

+ + thomas@devspaceship.com + +

+
+ +
+

Privacy

+

+ Beataptic does not collect or transmit any data. Everything works + locally on your device. +

+
+
+ ); +}; + +export default BeatapticSupport;