// SKEight — Home page sections (continued) // ───────────────────────────────────────────────────────────── // DAILY — Daily insight section with phone preview // ───────────────────────────────────────────────────────────── function DailySection() { return (
A daily reading

One pillar a day. One line of reflection.

SKEight surfaces the day's pillar against your primary chart and explains the relationship in one short note: a small signal for the day.

{[ ["Read in 20 seconds", "Designed to be glanced at, not doom-scrolled."], ["Primary chart aware", "Choose the saved chart used for daily insight."], ["No daily push flow", "The app does not need notifications to make the daily card useful."], ].map(([t, d]) => (
{t}
{d}
))}
); } // ───────────────────────────────────────────────────────────── // TRUST — Responsibility statement // ───────────────────────────────────────────────────────────── function Trust() { return (
Responsibility

A reading is a frame.
Decisions are yours.

); } function TrustRow({ title, body }) { return (

{title}

{body}

); } // ───────────────────────────────────────────────────────────── // DOWNLOAD CTA // ───────────────────────────────────────────────────────────── function DownloadCTA() { return (
CHART · CYCLES · DAILY

Your chart is waiting
to be read.

SKEight is built for iPhone. Chart generation is free; deeper report sections are unlocked through Apple in-app purchases.

Coming to the App Store VERSION 1.0 · APP STORE LINK PENDING
); } Object.assign(window, { DailySection, Trust, DownloadCTA });