// 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 }) => (
);
return (
{/* Navigation */}
{/* Hero */}
We prepare emerging leaders and entrepreneurs for college and careers.
A bright, organized, and mission-focused chapter serving Durango’s student community.
{/* 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.’}
))}
Fast Facts
Founded: 2010
Members: 120+
Advisor: [Advisor Name]
View Events
{/* 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 */}
{/* Donate */}
Support Durango DECA
Your donation supports student travel, registration, and supplies. Choose a tier below:
{[{tier:’Gold Champion’,amt:’$2,500+’},{tier:’Silver Sponsor’,amt:’$1,000+’},{tier:’Community Partner’,amt:’$250+’},{tier:’Custom Gift’,amt:’Any amount’}].map(t=>(
{t.tier}
{t.amt}
Join our mission to empower Durango’s future leaders.
Donate
))}
{/* Footer */}
);
}