26 lines
799 B
TypeScript
26 lines
799 B
TypeScript
import React from "react";
|
|
|
|
export default function SidebarWidget() {
|
|
return (
|
|
<div
|
|
className={`
|
|
mx-auto mb-10 w-full max-w-60 rounded-2xl bg-gray-100 px-4 py-5 text-center dark:bg-gray-800`}
|
|
>
|
|
<h3 className="mb-2 font-semibold text-gray-900 dark:text-white">
|
|
#1 Tailwind CSS Dashboard
|
|
</h3>
|
|
<p className="mb-4 text-gray-500 text-theme-sm dark:text-gray-400">
|
|
Leading Tailwind CSS Admin Template with 400+ UI Component and Pages.
|
|
</p>
|
|
<a
|
|
href="https://tailadmin.com/pricing"
|
|
target="_blank"
|
|
rel="nofollow"
|
|
className="flex items-center justify-center p-3 font-medium text-white rounded-lg bg-indigo-600 text-theme-sm hover:bg-indigo-700"
|
|
>
|
|
Upgrade To Pro
|
|
</a>
|
|
</div>
|
|
);
|
|
}
|