v1.2 - added react router

This commit is contained in:
Zaldimmar 2026-09-25 02:34:15 -05:00
parent c83ff25a36
commit b0fba52c0e
28 changed files with 4318 additions and 993 deletions

50
src/pages/Resources.tsx Normal file
View file

@ -0,0 +1,50 @@
import PageShell from "../components/PageShell.jsx";
const SECTIONS = [
{
id: "unity",
title: "Unity Teachings",
blurb: "Core principles, readings, and study material from the Unity movement.",
accent: "#138ba0",
background: "#eef9fb",
content: (
<div className="max-w-6xl mx-auto px-6">
{/* Unity teachings content */}
</div>
),
},
{
id: "branding",
title: "Branding & Marketing",
blurb: "Logos, colors, templates, and guidelines for representing NGU.",
accent: "#aac992",
background: "#ffffff",
content: (
<div className="max-w-6xl mx-auto px-6">
{/* Branding & marketing content */}
</div>
),
},
{
id: "partner",
title: "Partner Resources",
blurb: "Material for the organizations we collaborate with.",
accent: "#7a5ea8",
background: "#eef9fb",
content: (
<div className="max-w-6xl mx-auto px-6">
{/* Partner resources content */}
</div>
),
},
];
export default function ResourcesPage() {
return (
<PageShell
title="Resources"
intro="Teachings, brand assets, and material for chapters and partners."
sections={SECTIONS}
/>
);
}