Add this Ads Management tab content to AdminControlPanel.tsx after the Content tab and before the Legal tab:

          {/* Ads Management Tab */}
          <TabsContent value="ads">
            <AdminAdManagement />
          </TabsContent>

Also, add this button to the Platform Content card in the Content tab:

                  <Button 
                    className="w-full justify-start"
                    onClick={() => setActiveTab("ads")}
                  >
                    <Megaphone className="w-4 h-4 mr-2" />
                    Manage Member Ads
                    <ChevronRight className="w-4 h-4 ml-auto" />
                  </Button>

This should be added between the "Manage Legal Pages" button and "App Announcements" button.