// ContentSection.jsx - Simple with Left Sidebar 'use client'; import React, { useState } from 'react'; import Sidebar from './Sidebar'; import GeneralGuidelines from './GeneralGuidelines'; import SearchSampleRequirements from './SearchSampleRequirements'; const ContentSection = () => { const [activeSection, setActiveSection] = useState('general-content'); const renderContent = () => { const sections = { 'general-content': , 'search-content': }; return sections[activeSection] || ; }; return (
{/* LEFT SIDEBAR */}
{/* RIGHT CONTENT */}
{renderContent()}
); }; export default ContentSection;