Use our AstroLaunch UI Sidebar
example to display a sidenav menu in your web projects.
See below our beautiful sidebar examples that you can use in your AstroLaunch UI and React project. The examples also comes in different styles so you can adapt it easily to your needs.
Examples on this page are using @heroicons/react
make sure you have installed it.
npm i @heroicons/react
Preview
Code
import {
Card,
Typography,
List,
ListItem,
ListItemPrefix,
ListItemSuffix,
Chip,
} from "@material-tailwind/react";
import {
PresentationChartBarIcon,
ShoppingBagIcon,
UserCircleIcon,
Cog6ToothIcon,
InboxIcon,
PowerIcon,
} from "@heroicons/react/24/solid";
export function DefaultSidebar() {
return (
<Card className="h-[calc(100vh-2rem)] w-full max-w-[20rem] p-4 shadow-xl shadow-blue-gray-900/5">
<div className="mb-2 p-4">
<Typography variant="h5" color="blue-gray">
Sidebar
</Typography>
</div>
<List>
<ListItem>
<ListItemPrefix>
<PresentationChartBarIcon className="h-5 w-5" />
</ListItemPrefix>
Dashboard
</ListItem>
<ListItem>
<ListItemPrefix>
<ShoppingBagIcon className="h-5 w-5" />
</ListItemPrefix>
E-Commerce
</ListItem>
<ListItem>
<ListItemPrefix>
<InboxIcon className="h-5 w-5" />
</ListItemPrefix>
Inbox
<ListItemSuffix>
<Chip value="14" size="sm" variant="ghost" color="blue-gray" className="rounded-full" />
</ListItemSuffix>
</ListItem>
<ListItem>
<ListItemPrefix>
<UserCircleIcon className="h-5 w-5" />
</ListItemPrefix>
Profile
</ListItem>
<ListItem>
<ListItemPrefix>
<Cog6ToothIcon className="h-5 w-5" />
</ListItemPrefix>
Settings
</ListItem>
<ListItem>
<ListItemPrefix>
<PowerIcon className="h-5 w-5" />
</ListItemPrefix>
Log Out
</ListItem>
</List>
</Card>
);
}
Preview
Code
import React from "react";
import {
Card,
Typography,
List,
ListItem,
ListItemPrefix,
ListItemSuffix,
Chip,
Accordion,
AccordionHeader,
AccordionBody,
} from "@material-tailwind/react";
import {
PresentationChartBarIcon,
ShoppingBagIcon,
UserCircleIcon,
Cog6ToothIcon,
InboxIcon,
PowerIcon,
} from "@heroicons/react/24/solid";
import { ChevronRightIcon, ChevronDownIcon } from "@heroicons/react/24/outline";
export function MultiLevelSidebar() {
const [open, setOpen] = React.useState(0);
const handleOpen = (value) => {
setOpen(open === value ? 0 : value);
};
return (
<Card className="h-[calc(100vh-2rem)] w-full max-w-[20rem] p-4 shadow-xl shadow-blue-gray-900/5">
<div className="mb-2 p-4">
<Typography variant="h5" color="blue-gray">
Sidebar
</Typography>
</div>
<List>
<Accordion
open={open === 1}
icon={
<ChevronDownIcon
strokeWidth={2.5}
className={`mx-auto h-4 w-4 transition-transform ${open === 1 ? "rotate-180" : ""}`}
/>
}
>
<ListItem className="p-0" selected={open === 1}>
<AccordionHeader onClick={() => handleOpen(1)} className="border-b-0 p-3">
<ListItemPrefix>
<PresentationChartBarIcon className="h-5 w-5" />
</ListItemPrefix>
<Typography color="blue-gray" className="mr-auto font-normal">
Dashboard
</Typography>
</AccordionHeader>
</ListItem>
<AccordionBody className="py-1">
<List className="p-0">
<ListItem>
<ListItemPrefix>
<ChevronRightIcon strokeWidth={3} className="h-3 w-5" />
</ListItemPrefix>
Analytics
</ListItem>
<ListItem>
<ListItemPrefix>
<ChevronRightIcon strokeWidth={3} className="h-3 w-5" />
</ListItemPrefix>
Reporting
</ListItem>
<ListItem>
<ListItemPrefix>
<ChevronRightIcon strokeWidth={3} className="h-3 w-5" />
</ListItemPrefix>
Projects
</ListItem>
</List>
</AccordionBody>
</Accordion>
<Accordion
open={open === 2}
icon={
<ChevronDownIcon
strokeWidth={2.5}
className={`mx-auto h-4 w-4 transition-transform ${open === 2 ? "rotate-180" : ""}`}
/>
}
>
<ListItem className="p-0" selected={open === 2}>
<AccordionHeader onClick={() => handleOpen(2)} className="border-b-0 p-3">
<ListItemPrefix>
<ShoppingBagIcon className="h-5 w-5" />
</ListItemPrefix>
<Typography color="blue-gray" className="mr-auto font-normal">
E-Commerce
</Typography>
</AccordionHeader>
</ListItem>
<AccordionBody className="py-1">
<List className="p-0">
<ListItem>
<ListItemPrefix>
<ChevronRightIcon strokeWidth={3} className="h-3 w-5" />
</ListItemPrefix>
Orders
</ListItem>
<ListItem>
<ListItemPrefix>
<ChevronRightIcon strokeWidth={3} className="h-3 w-5" />
</ListItemPrefix>
Products
</ListItem>
</List>
</AccordionBody>
</Accordion>
<ListItem>
<ListItemPrefix>
<InboxIcon className="h-5 w-5" />
</ListItemPrefix>
Inbox
<ListItemSuffix>
<Chip value="14" size="sm" variant="ghost" color="blue-gray" className="rounded-full" />
</ListItemSuffix>
</ListItem>
<ListItem>
<ListItemPrefix>
<UserCircleIcon className="h-5 w-5" />
</ListItemPrefix>
Profile
</ListItem>
<ListItem>
<ListItemPrefix>
<Cog6ToothIcon className="h-5 w-5" />
</ListItemPrefix>
Settings
</ListItem>
<ListItem>
<ListItemPrefix>
<PowerIcon className="h-5 w-5" />
</ListItemPrefix>
Log Out
</ListItem>
</List>
</Card>
);
}
Preview
Code
import React from "react";
import {
Card,
Typography,
List,
ListItem,
ListItemPrefix,
ListItemSuffix,
Chip,
Accordion,
AccordionHeader,
AccordionBody,
} from "@material-tailwind/react";
import {
PresentationChartBarIcon,
ShoppingBagIcon,
UserCircleIcon,
Cog6ToothIcon,
InboxIcon,
PowerIcon,
} from "@heroicons/react/24/solid";
import { ChevronRightIcon, ChevronDownIcon } from "@heroicons/react/24/outline";
export function SidebarWithContentSeparator() {
const [open, setOpen] = React.useState(0);
const handleOpen = (value) => {
setOpen(open === value ? 0 : value);
};
return (
<Card className="h-[calc(100vh-2rem)] w-full max-w-[20rem] p-4 shadow-xl shadow-blue-gray-900/5">
<div className="mb-2 p-4">
<Typography variant="h5" color="blue-gray">
Sidebar
</Typography>
</div>
<List>
<Accordion
open={open === 1}
icon={
<ChevronDownIcon
strokeWidth={2.5}
className={`mx-auto h-4 w-4 transition-transform ${open === 1 ? "rotate-180" : ""}`}
/>
}
>
<ListItem className="p-0" selected={open === 1}>
<AccordionHeader onClick={() => handleOpen(1)} className="border-b-0 p-3">
<ListItemPrefix>
<PresentationChartBarIcon className="h-5 w-5" />
</ListItemPrefix>
<Typography color="blue-gray" className="mr-auto font-normal">
Dashboard
</Typography>
</AccordionHeader>
</ListItem>
<AccordionBody className="py-1">
<List className="p-0">
<ListItem>
<ListItemPrefix>
<ChevronRightIcon strokeWidth={3} className="h-3 w-5" />
</ListItemPrefix>
Analytics
</ListItem>
<ListItem>
<ListItemPrefix>
<ChevronRightIcon strokeWidth={3} className="h-3 w-5" />
</ListItemPrefix>
Reporting
</ListItem>
<ListItem>
<ListItemPrefix>
<ChevronRightIcon strokeWidth={3} className="h-3 w-5" />
</ListItemPrefix>
Projects
</ListItem>
</List>
</AccordionBody>
</Accordion>
<Accordion
open={open === 2}
icon={
<ChevronDownIcon
strokeWidth={2.5}
className={`mx-auto h-4 w-4 transition-transform ${open === 2 ? "rotate-180" : ""}`}
/>
}
>
<ListItem className="p-0" selected={open === 2}>
<AccordionHeader onClick={() => handleOpen(2)} className="border-b-0 p-3">
<ListItemPrefix>
<ShoppingBagIcon className="h-5 w-5" />
</ListItemPrefix>
<Typography color="blue-gray" className="mr-auto font-normal">
E-Commerce
</Typography>
</AccordionHeader>
</ListItem>
<AccordionBody className="py-1">
<List className="p-0">
<ListItem>
<ListItemPrefix>
<ChevronRightIcon strokeWidth={3} className="h-3 w-5" />
</ListItemPrefix>
Orders
</ListItem>
<ListItem>
<ListItemPrefix>
<ChevronRightIcon strokeWidth={3} className="h-3 w-5" />
</ListItemPrefix>
Products
</ListItem>
</List>
</AccordionBody>
</Accordion>
<hr className="my-2 border-blue-gray-50" />
<ListItem>
<ListItemPrefix>
<InboxIcon className="h-5 w-5" />
</ListItemPrefix>
Inbox
<ListItemSuffix>
<Chip value="14" size="sm" variant="ghost" color="blue-gray" className="rounded-full" />
</ListItemSuffix>
</ListItem>
<ListItem>
<ListItemPrefix>
<UserCircleIcon className="h-5 w-5" />
</ListItemPrefix>
Profile
</ListItem>
<ListItem>
<ListItemPrefix>
<Cog6ToothIcon className="h-5 w-5" />
</ListItemPrefix>
Settings
</ListItem>
<ListItem>
<ListItemPrefix>
<PowerIcon className="h-5 w-5" />
</ListItemPrefix>
Log Out
</ListItem>
</List>
</Card>
);
}
Preview
Code
Upgrade to Material Tailwind PRO and get even more components, plugins, advanced features and premium.
import React from "react";
import {
Card,
Typography,
List,
ListItem,
ListItemPrefix,
ListItemSuffix,
Chip,
Accordion,
AccordionHeader,
AccordionBody,
Alert,
} from "@material-tailwind/react";
import {
PresentationChartBarIcon,
ShoppingBagIcon,
UserCircleIcon,
Cog6ToothIcon,
InboxIcon,
PowerIcon,
} from "@heroicons/react/24/solid";
import {
ChevronRightIcon,
ChevronDownIcon,
CubeTransparentIcon,
} from "@heroicons/react/24/outline";
export function SidebarWithCta() {
const [open, setOpen] = React.useState(0);
const [openAlert, setOpenAlert] = React.useState(true);
const handleOpen = (value) => {
setOpen(open === value ? 0 : value);
};
return (
<Card className="h-[calc(100vh-2rem)] w-full max-w-[20rem] p-4 shadow-xl shadow-blue-gray-900/5">
<div className="mb-2 p-4">
<Typography variant="h5" color="blue-gray">
Sidebar
</Typography>
</div>
<List>
<Accordion
open={open === 1}
icon={
<ChevronDownIcon
strokeWidth={2.5}
className={`mx-auto h-4 w-4 transition-transform ${open === 1 ? "rotate-180" : ""}`}
/>
}
>
<ListItem className="p-0" selected={open === 1}>
<AccordionHeader onClick={() => handleOpen(1)} className="border-b-0 p-3">
<ListItemPrefix>
<PresentationChartBarIcon className="h-5 w-5" />
</ListItemPrefix>
<Typography color="blue-gray" className="mr-auto font-normal">
Dashboard
</Typography>
</AccordionHeader>
</ListItem>
<AccordionBody className="py-1">
<List className="p-0">
<ListItem>
<ListItemPrefix>
<ChevronRightIcon strokeWidth={3} className="h-3 w-5" />
</ListItemPrefix>
Analytics
</ListItem>
<ListItem>
<ListItemPrefix>
<ChevronRightIcon strokeWidth={3} className="h-3 w-5" />
</ListItemPrefix>
Reporting
</ListItem>
<ListItem>
<ListItemPrefix>
<ChevronRightIcon strokeWidth={3} className="h-3 w-5" />
</ListItemPrefix>
Projects
</ListItem>
</List>
</AccordionBody>
</Accordion>
<Accordion
open={open === 2}
icon={
<ChevronDownIcon
strokeWidth={2.5}
className={`mx-auto h-4 w-4 transition-transform ${open === 2 ? "rotate-180" : ""}`}
/>
}
>
<ListItem className="p-0" selected={open === 2}>
<AccordionHeader onClick={() => handleOpen(2)} className="border-b-0 p-3">
<ListItemPrefix>
<ShoppingBagIcon className="h-5 w-5" />
</ListItemPrefix>
<Typography color="blue-gray" className="mr-auto font-normal">
E-Commerce
</Typography>
</AccordionHeader>
</ListItem>
<AccordionBody className="py-1">
<List className="p-0">
<ListItem>
<ListItemPrefix>
<ChevronRightIcon strokeWidth={3} className="h-3 w-5" />
</ListItemPrefix>
Orders
</ListItem>
<ListItem>
<ListItemPrefix>
<ChevronRightIcon strokeWidth={3} className="h-3 w-5" />
</ListItemPrefix>
Products
</ListItem>
</List>
</AccordionBody>
</Accordion>
<hr className="my-2 border-blue-gray-50" />
<ListItem>
<ListItemPrefix>
<InboxIcon className="h-5 w-5" />
</ListItemPrefix>
Inbox
<ListItemSuffix>
<Chip value="14" size="sm" variant="ghost" color="blue-gray" className="rounded-full" />
</ListItemSuffix>
</ListItem>
<ListItem>
<ListItemPrefix>
<UserCircleIcon className="h-5 w-5" />
</ListItemPrefix>
Profile
</ListItem>
<ListItem>
<ListItemPrefix>
<Cog6ToothIcon className="h-5 w-5" />
</ListItemPrefix>
Settings
</ListItem>
<ListItem>
<ListItemPrefix>
<PowerIcon className="h-5 w-5" />
</ListItemPrefix>
Log Out
</ListItem>
</List>
<Alert open={openAlert} className="mt-auto" onClose={() => setOpenAlert(false)}>
<CubeTransparentIcon className="mb-4 h-12 w-12" />
<Typography variant="h6" className="mb-1">
Upgrade to PRO
</Typography>
<Typography variant="small" className="font-normal opacity-80">
Upgrade to AstroLaunch UI PRO and get even more components, plugins, advanced features
and premium.
</Typography>
<div className="mt-4 flex gap-3">
<Typography
as="a"
href="#"
variant="small"
className="font-medium opacity-80"
onClick={() => setOpenAlert(false)}
>
Dismiss
</Typography>
<Typography as="a" href="#" variant="small" className="font-medium">
Upgrade Now
</Typography>
</div>
</Alert>
</Card>
);
}
Preview
Code
Upgrade to Material Tailwind PRO and get even more components, plugins, advanced features and premium.
import React from "react";
import {
Card,
Typography,
List,
ListItem,
ListItemPrefix,
ListItemSuffix,
Chip,
Accordion,
AccordionHeader,
AccordionBody,
Alert,
} from "@material-tailwind/react";
import {
PresentationChartBarIcon,
ShoppingBagIcon,
UserCircleIcon,
Cog6ToothIcon,
InboxIcon,
PowerIcon,
} from "@heroicons/react/24/solid";
import {
ChevronRightIcon,
ChevronDownIcon,
CubeTransparentIcon,
} from "@heroicons/react/24/outline";
export function SidebarWithLogo() {
const [open, setOpen] = React.useState(0);
const [openAlert, setOpenAlert] = React.useState(true);
const handleOpen = (value) => {
setOpen(open === value ? 0 : value);
};
return (
<Card className="h-[calc(100vh-2rem)] w-full max-w-[20rem] p-4 shadow-xl shadow-blue-gray-900/5">
<div className="mb-2 flex items-center gap-4 p-4">
<img src="/img/logo-ct-dark.png" alt="brand" className="h-8 w-8" />
<Typography variant="h5" color="blue-gray">
Sidebar
</Typography>
</div>
<List>
<Accordion
open={open === 1}
icon={
<ChevronDownIcon
strokeWidth={2.5}
className={`mx-auto h-4 w-4 transition-transform ${open === 1 ? "rotate-180" : ""}`}
/>
}
>
<ListItem className="p-0" selected={open === 1}>
<AccordionHeader onClick={() => handleOpen(1)} className="border-b-0 p-3">
<ListItemPrefix>
<PresentationChartBarIcon className="h-5 w-5" />
</ListItemPrefix>
<Typography color="blue-gray" className="mr-auto font-normal">
Dashboard
</Typography>
</AccordionHeader>
</ListItem>
<AccordionBody className="py-1">
<List className="p-0">
<ListItem>
<ListItemPrefix>
<ChevronRightIcon strokeWidth={3} className="h-3 w-5" />
</ListItemPrefix>
Analytics
</ListItem>
<ListItem>
<ListItemPrefix>
<ChevronRightIcon strokeWidth={3} className="h-3 w-5" />
</ListItemPrefix>
Reporting
</ListItem>
<ListItem>
<ListItemPrefix>
<ChevronRightIcon strokeWidth={3} className="h-3 w-5" />
</ListItemPrefix>
Projects
</ListItem>
</List>
</AccordionBody>
</Accordion>
<Accordion
open={open === 2}
icon={
<ChevronDownIcon
strokeWidth={2.5}
className={`mx-auto h-4 w-4 transition-transform ${open === 2 ? "rotate-180" : ""}`}
/>
}
>
<ListItem className="p-0" selected={open === 2}>
<AccordionHeader onClick={() => handleOpen(2)} className="border-b-0 p-3">
<ListItemPrefix>
<ShoppingBagIcon className="h-5 w-5" />
</ListItemPrefix>
<Typography color="blue-gray" className="mr-auto font-normal">
E-Commerce
</Typography>
</AccordionHeader>
</ListItem>
<AccordionBody className="py-1">
<List className="p-0">
<ListItem>
<ListItemPrefix>
<ChevronRightIcon strokeWidth={3} className="h-3 w-5" />
</ListItemPrefix>
Orders
</ListItem>
<ListItem>
<ListItemPrefix>
<ChevronRightIcon strokeWidth={3} className="h-3 w-5" />
</ListItemPrefix>
Products
</ListItem>
</List>
</AccordionBody>
</Accordion>
<hr className="my-2 border-blue-gray-50" />
<ListItem>
<ListItemPrefix>
<InboxIcon className="h-5 w-5" />
</ListItemPrefix>
Inbox
<ListItemSuffix>
<Chip value="14" size="sm" variant="ghost" color="blue-gray" className="rounded-full" />
</ListItemSuffix>
</ListItem>
<ListItem>
<ListItemPrefix>
<UserCircleIcon className="h-5 w-5" />
</ListItemPrefix>
Profile
</ListItem>
<ListItem>
<ListItemPrefix>
<Cog6ToothIcon className="h-5 w-5" />
</ListItemPrefix>
Settings
</ListItem>
<ListItem>
<ListItemPrefix>
<PowerIcon className="h-5 w-5" />
</ListItemPrefix>
Log Out
</ListItem>
</List>
<Alert open={openAlert} className="mt-auto" onClose={() => setOpenAlert(false)}>
<CubeTransparentIcon className="mb-4 h-12 w-12" />
<Typography variant="h6" className="mb-1">
Upgrade to PRO
</Typography>
<Typography variant="small" className="font-normal opacity-80">
Upgrade to AstroLaunch UI PRO and get even more components, plugins, advanced features
and premium.
</Typography>
<div className="mt-4 flex gap-3">
<Typography
as="a"
href="#"
variant="small"
className="font-medium opacity-80"
onClick={() => setOpenAlert(false)}
>
Dismiss
</Typography>
<Typography as="a" href="#" variant="small" className="font-medium">
Upgrade Now
</Typography>
</div>
</Alert>
</Card>
);
}
Preview
Code
Upgrade to Material Tailwind PRO and get even more components, plugins, advanced features and premium.
import React from "react";
import {
Card,
Typography,
List,
ListItem,
ListItemPrefix,
ListItemSuffix,
Chip,
Accordion,
AccordionHeader,
AccordionBody,
Alert,
Input,
} from "@material-tailwind/react";
import {
PresentationChartBarIcon,
ShoppingBagIcon,
UserCircleIcon,
Cog6ToothIcon,
InboxIcon,
PowerIcon,
} from "@heroicons/react/24/solid";
import {
ChevronRightIcon,
ChevronDownIcon,
CubeTransparentIcon,
MagnifyingGlassIcon,
} from "@heroicons/react/24/outline";
export function SidebarWithSearch() {
const [open, setOpen] = React.useState(0);
const [openAlert, setOpenAlert] = React.useState(true);
const handleOpen = (value) => {
setOpen(open === value ? 0 : value);
};
return (
<Card className="h-[calc(100vh-2rem)] w-full max-w-[20rem] p-4 shadow-xl shadow-blue-gray-900/5">
<div className="mb-2 flex items-center gap-4 p-4">
<img src="/img/logo-ct-dark.png" alt="brand" className="h-8 w-8" />
<Typography variant="h5" color="blue-gray">
Sidebar
</Typography>
</div>
<div className="p-2">
<Input icon={<MagnifyingGlassIcon className="h-5 w-5" />} label="Search" />
</div>
<List>
<Accordion
open={open === 1}
icon={
<ChevronDownIcon
strokeWidth={2.5}
className={`mx-auto h-4 w-4 transition-transform ${open === 1 ? "rotate-180" : ""}`}
/>
}
>
<ListItem className="p-0" selected={open === 1}>
<AccordionHeader onClick={() => handleOpen(1)} className="border-b-0 p-3">
<ListItemPrefix>
<PresentationChartBarIcon className="h-5 w-5" />
</ListItemPrefix>
<Typography color="blue-gray" className="mr-auto font-normal">
Dashboard
</Typography>
</AccordionHeader>
</ListItem>
<AccordionBody className="py-1">
<List className="p-0">
<ListItem>
<ListItemPrefix>
<ChevronRightIcon strokeWidth={3} className="h-3 w-5" />
</ListItemPrefix>
Analytics
</ListItem>
<ListItem>
<ListItemPrefix>
<ChevronRightIcon strokeWidth={3} className="h-3 w-5" />
</ListItemPrefix>
Reporting
</ListItem>
<ListItem>
<ListItemPrefix>
<ChevronRightIcon strokeWidth={3} className="h-3 w-5" />
</ListItemPrefix>
Projects
</ListItem>
</List>
</AccordionBody>
</Accordion>
<Accordion
open={open === 2}
icon={
<ChevronDownIcon
strokeWidth={2.5}
className={`mx-auto h-4 w-4 transition-transform ${open === 2 ? "rotate-180" : ""}`}
/>
}
>
<ListItem className="p-0" selected={open === 2}>
<AccordionHeader onClick={() => handleOpen(2)} className="border-b-0 p-3">
<ListItemPrefix>
<ShoppingBagIcon className="h-5 w-5" />
</ListItemPrefix>
<Typography color="blue-gray" className="mr-auto font-normal">
E-Commerce
</Typography>
</AccordionHeader>
</ListItem>
<AccordionBody className="py-1">
<List className="p-0">
<ListItem>
<ListItemPrefix>
<ChevronRightIcon strokeWidth={3} className="h-3 w-5" />
</ListItemPrefix>
Orders
</ListItem>
<ListItem>
<ListItemPrefix>
<ChevronRightIcon strokeWidth={3} className="h-3 w-5" />
</ListItemPrefix>
Products
</ListItem>
</List>
</AccordionBody>
</Accordion>
<hr className="my-2 border-blue-gray-50" />
<ListItem>
<ListItemPrefix>
<InboxIcon className="h-5 w-5" />
</ListItemPrefix>
Inbox
<ListItemSuffix>
<Chip value="14" size="sm" variant="ghost" color="blue-gray" className="rounded-full" />
</ListItemSuffix>
</ListItem>
<ListItem>
<ListItemPrefix>
<UserCircleIcon className="h-5 w-5" />
</ListItemPrefix>
Profile
</ListItem>
<ListItem>
<ListItemPrefix>
<Cog6ToothIcon className="h-5 w-5" />
</ListItemPrefix>
Settings
</ListItem>
<ListItem>
<ListItemPrefix>
<PowerIcon className="h-5 w-5" />
</ListItemPrefix>
Log Out
</ListItem>
</List>
<Alert open={openAlert} className="mt-auto" onClose={() => setOpenAlert(false)}>
<CubeTransparentIcon className="mb-4 h-12 w-12" />
<Typography variant="h6" className="mb-1">
Upgrade to PRO
</Typography>
<Typography variant="small" className="font-normal opacity-80">
Upgrade to AstroLaunch UI PRO and get even more components, plugins, advanced features
and premium.
</Typography>
<div className="mt-4 flex gap-3">
<Typography
as="a"
href="#"
variant="small"
className="font-medium opacity-80"
onClick={() => setOpenAlert(false)}
>
Dismiss
</Typography>
<Typography as="a" href="#" variant="small" className="font-medium">
Upgrade Now
</Typography>
</div>
</Alert>
</Card>
);
}