diff --git a/app/app/rhythm/page.tsx b/app/app/rhythm/page.tsx new file mode 100644 index 000000000..538926465 --- /dev/null +++ b/app/app/rhythm/page.tsx @@ -0,0 +1,35 @@ +// app/rhythm/page.tsx +import type { Metadata } from "next"; +import prayers from "../../data/rhythm.json"; + +export const metadata: Metadata = { + title: "Daily Prayers — Rhythm", + description: "Simple daily prayers with optional audio.", +}; + +type Prayer = { + title: string; + text: string; + audio?: string; +}; + +export default function RhythmPage() { + const list = prayers as Prayer[]; + + return ( +
+

Daily Prayers

+ +
+ ); +} diff --git a/app/page.tsx b/app/page.tsx index ffa40034c..650ef2e48 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,66 +1,35 @@ -import { Metadata } from "next" -import { Button } from "components/Button/Button" - -import { LP_GRID_ITEMS } from "lp-items" +// app/page.tsx +import type { Metadata } from "next"; +import Link from "next/link"; export const metadata: Metadata = { - title: "Next.js Enterprise Boilerplate", - twitter: { - card: "summary_large_image", - }, - openGraph: { - url: "https://next-enterprise.vercel.app/", - images: [ - { - width: 1200, - height: 630, - url: "https://raw.githubusercontent.com/Blazity/next-enterprise/main/.github/assets/project-logo.png", - }, - ], - }, -} + title: "Sanctuary in Motion — Home", + description: "Your prayer rhythm companion.", +}; -export default function Web() { +export default function Home() { return ( - <> -
-
-
-

- Next.js Enterprise Boilerplate -

-

- Jumpstart your enterprise project with our feature-packed, high-performance Next.js boilerplate! - Experience rapid UI development, AI-powered code reviews, and an extensive suite of tools for a smooth and - enjoyable development process. -

- - -
-
-
-
-
-
- {LP_GRID_ITEMS.map((singleItem) => ( -
-
- {singleItem.icon} -
-

{singleItem.title}

-

{singleItem.description}

-
- ))} -
-
-
- - ) +
+

Sanctuary in Motion

+

+ Your prayer rhythm companion — starting here. +

+ +
+ + Go to Daily Prayers + + + + Home & Fashion + +
+
+ ); } diff --git a/data/rhythm.json b/data/rhythm.json new file mode 100644 index 000000000..ac83e71fa --- /dev/null +++ b/data/rhythm.json @@ -0,0 +1,17 @@ +[ + { + "title": "Morning Prayer", + "text": "Lord, let me rise with your light today.", + "audio": "/audio/morning.mp3" + }, + { + "title": "Midday Prayer", + "text": "Keep me steady in my work and centered in you.", + "audio": "/audio/midday.mp3" + }, + { + "title": "Evening Prayer", + "text": "Bring me rest and peace tonight.", + "audio": "/audio/evening.mp3" + } +]