NGU-Web/src/pages/Resources.tsx
2026-09-25 02:34:15 -05:00

50 lines
1.2 KiB
TypeScript

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}
/>
);
}