@@ -32,22 +32,6 @@ const contributionSections: ContributionSection[] = [
3232 ] ,
3333 color : '#8b5cf6'
3434 } ,
35- {
36- id : 'design' ,
37- title : 'Design' ,
38- icon : '🎨' ,
39- description : "If you're a designer, you can:" ,
40- items : [
41- 'Create new UI/UX designs' ,
42- 'Improve existing visuals' ,
43- 'Share design feedback'
44- ] ,
45- links : [
46- { text : 'Figma' , url : 'https://www.figma.com/' } ,
47- { text : 'Adobe XD' , url : 'https://helpx.adobe.com/support/xd.html' }
48- ] ,
49- color : '#ec4899'
50- } ,
5135 {
5236 id : 'documentation' ,
5337 title : 'Documentation' ,
@@ -101,7 +85,6 @@ const contributionSections: ContributionSection[] = [
10185const tableOfContents = [
10286 { id : 'how-you-can-contribute' , title : 'How You Can Contribute' , icon : '⚡' } ,
10387 { id : 'code' , title : 'Code' , icon : '💻' } ,
104- { id : 'design' , title : 'Design' , icon : '🎨' } ,
10588 { id : 'documentation' , title : 'Documentation' , icon : '📚' } ,
10689 { id : 'community' , title : 'Community' , icon : '🤝' } ,
10790 { id : 'get-started' , title : 'Get Started' , icon : '🚀' } ,
@@ -284,7 +267,7 @@ export default function CommunityPage(): React.ReactElement {
284267 < div className = "section-links" >
285268 < div className = "links-header" >
286269 < span className = "links-icon" > 🔗</ span >
287- < span > Find our { section . id === 'code' ? 'codebase' : section . id === 'design' ? 'design resources' : section . id === ' documentation' ? 'documentation' : section . id === 'community' ? 'conversation' : 'resources' } on:</ span >
270+ < span > Find our { section . id === 'code' ? 'codebase' : section . id === 'documentation' ? 'documentation' : section . id === 'community' ? 'conversation' : 'resources' } on:</ span >
288271 </ div >
289272 < div className = "links-container" >
290273 { section . links . map ( ( link , linkIndex ) => (
0 commit comments