+ {/* Section Header */}
+
+
+ Writing Guidelines
+
+
+ Follow these best practices to create high-quality, impactful content
+
+
+
+ {/* Tab Navigation */}
+
+ {categories.map((category) => (
+ setActiveTab(category.id)}
+ className={`
+ inline-flex items-center gap-2 px-6 py-3 rounded-lg
+ font-semibold transition-all duration-200
+ focus:outline-none focus:ring-4 focus:ring-orange-500/50
+ ${activeTab === category.id
+ ? 'bg-orange-500 text-white shadow-lg scale-105'
+ : 'bg-white dark:bg-gray-800 text-gray-700 dark:text-gray-300 hover:bg-orange-50 dark:hover:bg-gray-700'
+ }
+ `}
+ >
+ {category.icon}
+ {category.title}
+
+ ))}
+
+
+ {/* Tab Content */}
+ {activeCategory && (
+
+ {activeCategory.guidelines.map((guideline, index) => (
+
+ {/* Header */}
+
+
+ {guideline.title}
+
+
+ {guideline.description}
+
+
+
+ {/* Do's and Don'ts */}
+
+ {/* Do's */}
+
+
+
+ {guideline.dos.map((item, idx) => (
+
+
+ {item}
+
+ ))}
+
+
+
+ {/* Don'ts */}
+
+
+
+ {guideline.donts.map((item, idx) => (
+
+
+ {item}
+
+ ))}
+
+
+
+
+ ))}
+
+ )}
+
+ {/* CTA */}
+
+
+ Ready to Write?
+
+
+ Follow these guidelines and start creating amazing content for our community
+
+
+ Submit Your Proposal
+
+
+
+
+