// Framer-friendly single component version — paste into Framer’s Code Component panel // Uses plain React + Tailwind (no routing needed) import React from “react”; export default function DurangoDECAWebsite() { const primary = “#0E6EB8”; const DonateButton = ({ link = “#”, children = “Donate Now” }) => ( {children} ); const Section = ({ title, children, bg }) => (
{children}
); return (
{/* Navigation */}
D
Durango DECA
About Events Sponsors Give
{/* Hero */}

We prepare emerging leaders and entrepreneurs for college and careers.

A bright, organized, and mission-focused chapter serving Durango’s student community.

Join Our Supporters Learn More
{/* About */}

About Durango DECA

DECA connects classroom learning to real-world leadership and entrepreneurship. Students gain hands-on experience in marketing, finance, hospitality, and management while building confidence and community impact.

{[“Purpose”,”Classroom → Career”,”Real-World”].map((t,i)=>(

{t}

{i===0?’Empower students with leadership, ethics, and business skills.’:i===1?’Turn projects into experiences that prepare students for college and work.’:’Compete, present, and collaborate with local partners and mentors.’}

))}
{/* Events */}

Events

{[{title:’Regional Competition’,date:’Nov 9–10, Craig, CO’},{title:’State Conference’,date:’Feb 2026, Colorado Springs’},{title:’Community Showcase’,date:’April 2026, DHS’}].map(e=>(

{e.title}

{e.date}

Support our members by funding travel and participation costs.

Fund Students
))}
{/* Sponsors */}

Thank You to Our Sponsors

Our community partners make competition, travel, and classroom-to-career experiences possible.

{Array.from({length:12}).map((_,i)=>(
+ Your Logo Here
))}
{/* Donate */} {/* Footer */}
); }