mirror of
https://github.com/d0zingcat/alert-message-center.git
synced 2026-05-13 15:09:19 +00:00
@@ -37,7 +37,11 @@ function App() {
|
|||||||
<div className="min-h-screen flex items-center justify-center bg-gray-50">
|
<div className="min-h-screen flex items-center justify-center bg-gray-50">
|
||||||
<div className="max-w-md w-full bg-white shadow-lg rounded-lg p-8">
|
<div className="max-w-md w-full bg-white shadow-lg rounded-lg p-8">
|
||||||
<div className="text-center">
|
<div className="text-center">
|
||||||
<img src="/icon.png" alt="Logo" className="h-16 w-16 mx-auto mb-4" />
|
<img
|
||||||
|
src="/icon.png"
|
||||||
|
alt="Logo"
|
||||||
|
className="h-16 w-16 mx-auto mb-4"
|
||||||
|
/>
|
||||||
<h1 className="text-3xl font-bold text-gray-900 mb-2">
|
<h1 className="text-3xl font-bold text-gray-900 mb-2">
|
||||||
Alert Message Center
|
Alert Message Center
|
||||||
</h1>
|
</h1>
|
||||||
@@ -75,10 +79,11 @@ function App() {
|
|||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
onClick={() => setActiveTab("admin")}
|
onClick={() => setActiveTab("admin")}
|
||||||
className={`${activeTab === "admin"
|
className={`${
|
||||||
? "border-indigo-500 text-gray-900"
|
activeTab === "admin"
|
||||||
: "border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700"
|
? "border-indigo-500 text-gray-900"
|
||||||
} inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium`}
|
: "border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700"
|
||||||
|
} inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium`}
|
||||||
>
|
>
|
||||||
<Settings className="mr-2 h-4 w-4" />
|
<Settings className="mr-2 h-4 w-4" />
|
||||||
Admin
|
Admin
|
||||||
@@ -87,10 +92,11 @@ function App() {
|
|||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
onClick={() => setActiveTab("topics")}
|
onClick={() => setActiveTab("topics")}
|
||||||
className={`${activeTab === "topics"
|
className={`${
|
||||||
? "border-indigo-500 text-gray-900"
|
activeTab === "topics"
|
||||||
: "border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700"
|
? "border-indigo-500 text-gray-900"
|
||||||
} inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium`}
|
: "border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700"
|
||||||
|
} inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium`}
|
||||||
>
|
>
|
||||||
<Hash className="mr-2 h-4 w-4" />
|
<Hash className="mr-2 h-4 w-4" />
|
||||||
Topics
|
Topics
|
||||||
@@ -99,10 +105,11 @@ function App() {
|
|||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
onClick={() => setActiveTab("users")}
|
onClick={() => setActiveTab("users")}
|
||||||
className={`${activeTab === "users"
|
className={`${
|
||||||
? "border-indigo-500 text-gray-900"
|
activeTab === "users"
|
||||||
: "border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700"
|
? "border-indigo-500 text-gray-900"
|
||||||
} inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium`}
|
: "border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700"
|
||||||
|
} inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium`}
|
||||||
>
|
>
|
||||||
<Users className="mr-2 h-4 w-4" />
|
<Users className="mr-2 h-4 w-4" />
|
||||||
Users
|
Users
|
||||||
|
|||||||
13
biome.json
13
biome.json
@@ -71,5 +71,16 @@
|
|||||||
"organizeImports": "on"
|
"organizeImports": "on"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"overrides": [
|
||||||
|
{
|
||||||
|
"includes": ["apps/server/drizzle/meta/**"],
|
||||||
|
"linter": {
|
||||||
|
"enabled": false
|
||||||
|
},
|
||||||
|
"formatter": {
|
||||||
|
"enabled": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user