import { useState } from "react"; import nguLogo from "@/NGU_Logo.svg"; import fallLogo from "@/Fall Logo.svg"; import nguLogo_WhiteBG from "@/NGU_Logo_WhiteBG.svg"; {/* SVGs */} const DoveSVG = ({ className = "" }: { className?: string }) => ( ); const InstagramIcon = () => ( ); const FacebookIcon = () => ( ); const DiscordIcon = () => ( ); {/* Link Tables */} const Social_Links = [ { label: "Instagram", href: "https://www.instagram.com/nextgenerationunity/", icon: }, { label: "Facebook", href: "https://www.facebook.com/NextGenerationofUnity", icon: }, { label: "Discord", href: "https://discord.com/invite/AtngzpqaX5", icon: }, ] const Nav_Links = [ { label: "About", href: "#about"}, { label: "Events", href: "#events"}, { label: "Connect", href: "#connect"}, ] const Footer_Links = [ { label: "Privacy Policy", href: "#"}, { label: "Terms of Service", href: "#"}, { label: "Contact Us", href: "mailto:info@nextgenerationofunity.org"}, ] {/* Functions */} function WaveText({ text, baseDelay = 0, step = 0.1 }) { return ( <> {text.split("").map((char, i) => ( {char === " " ? "\u00A0" : char} ))} ); } export default function App() { const [mobileMenuOpen, setMobileMenuOpen] = useState(false); const [activeTab, setActiveTab] = useState("main"); return (
{/* ── NAV ─────────────────────────────────────────────── */} {/* Mobile menu */} {mobileMenuOpen && (
{Nav_Links.map((link) => ( setMobileMenuOpen(false)}> {link.label} ))} setMobileMenuOpen(false)}> Give
)} {/* ── HERO/ABOUT ─────────────────────────────────────────────── */}
{/* Floating doves */}

Next Generation

A young-adult focused community ministy focused on supporting individuals in Unity Ministries from 18-40 years old. Rooted in spiritual growth, leadership development, and sacred service.

We are the future of the Unity Movement.

{/* ── ABOUT/INFO ─────────────────────────────────────── */}

A Ministry Designed For
Young Adults

NGU exists to connect young adults across Unity ministries and create spaces for authentic spiritual exploration, community, and conscious living.

{[ { title: "Spiritual Community", icon: "🕊️", desc: "We welcome all adults under 40 no matter where you are on your journey. Our community thrives on diversity of thought, background, and belief." }, { title: "Conscious Development", icon: "🌱", desc: "Through workshops, retreats, and gatherings, we cultivate minds and spirits ready to engage with life's deepest questions." }, { title: "Connected Network", icon: "🌐", desc: "NGU spans regions nationwide. From local chapter small group ministry to regional and national gatherings and retreats, you're never that far away from your people." }, ].map((card) => (
{card.icon}

{card.title}

{card.desc}

))}
{/* ── EVENTS ─────────────────────────────────────────────── */}

Upcoming Events

{/* Featured event card */}
Next Generation of Unity

Fall Retreat 2026

"Consciousness Creates"

November 12-15th, 2026

Unity Village, MO

Next Generation of Unity

Join us for an exciting opportunity to connect with young adults from across the country through meaningful conversations, creative workshops, and shared artistic expression. All designed to shift your focus your highest self.

Registration starting at $150, and $75 loding cost.

{[ { label: "Register Now!", link:"https://ngu.churchcenter.com/registrations/events/3761999"}, { label: "Workshop Signup", link:"https://ngu.churchcenter.com/people/forms/1285943"}, { label: "Scholarship Application", link:"https://ngu.churchcenter.com/people/forms/1261992"}, ].map(item => ( {item.label} ))}

· More events coming soon, stay connected for announcements ·

{/* ── CONNECT / SOCIALS ─────────────────────────────────── */}

Ready to Connect?

Find your place in the NGU community

{[ { label: "Volunteer", desc: "Help create transformative experiences for young adults", link:"https://ngu.churchcenter.com/people/forms/1176908"}, { label: "Membership", desc: "Become an official member of the NGU community", link:"https://ngu.churchcenter.com/people/forms/1135816"}, { label: "Affiliation Form", desc: "Affiliate your ministry or spiritual organization with NGU", link:"https://ngu.churchcenter.com/people/forms/1135750"}, { label: "Speaker & Musician Directory", desc: "Join our network of speakers, musicians, and facilitators", link:"https://ngu.churchcenter.com/people/forms/1173181"}, ].map(item => (

{item.label}

{item.desc}

{/* Arrow */}
))}
{/* ── FOOTER - Using #042f3a for BG ─────────────────────────────────────── */}
); }