Add these tab contents before the closing of the Tabs component in AdminControlPanel.tsx:

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

          {/* Points Management Tab */}
          <TabsContent value="points">
            <AdminPointsManagement />
          </TabsContent>

Also, make sure there's a Support tab content if it's missing:

          {/* Support Tab */}
          <TabsContent value="support">
            <AdminSupportTab />
          </TabsContent>

          {/* Groups Tab */}
          <TabsContent value="groups">
            <AdminGroupsManagement />
          </TabsContent>

These should be added around line 1000+ near the end of the file, before the closing </Tabs> tag.