import React, { useState } from 'react'; import Sidebar from '../../partials/Sidebar'; import Header from '../../partials/Header'; function BadgePage() { const [sidebarOpen, setSidebarOpen] = useState(false); return (
{/* Sidebar */} {/* Content area */}
{/* Site header */}
{/* Page header */}

Badge ✨

{/* Components */}
{/* Basic Small */}

Basic Small

{/* Start */}
Working on
{/* End */}
{/* Start */}
Exciting news
{/* End */}
{/* Start */}
Product
{/* End */}
{/* Start */}
Announcement
{/* End */}
{/* Start */}
Bug Fix
{/* End */}
{/* Start */}
Customer Stories
{/* End */}
{/* Start */}
All Stories
{/* End */}
{/* Start */}
All Stories
{/* End */}
{/* Basic Large */}

Basic Large

{/* Start */}
Working on
{/* End */}
{/* Start */}
Exciting news
{/* End */}
{/* Start */}
Product
{/* End */}
{/* Start */}
Announcement
{/* End */}
{/* Start */}
Bug Fix
{/* End */}
{/* Start */}
Customer Stories
{/* End */}
{/* Start */}
All Stories
{/* End */}
{/* Start */}
All Stories
{/* End */}
{/* Basic with Icon */}

Basic with Icon

{/* Start */}
Special Offer
{/* End */}
{/* Start */}
Special Offer
{/* End */}
{/* Basic for Charts */}

Basic for Charts

{/* Start */}
+29%
{/* End */}
{/* Start */}
-14%
{/* End */}
); } export default BadgePage;