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="max-w-md w-full bg-white shadow-lg rounded-lg p-8">
|
||||
<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">
|
||||
Alert Message Center
|
||||
</h1>
|
||||
@@ -75,7 +79,8 @@ function App() {
|
||||
<button
|
||||
type="button"
|
||||
onClick={() => setActiveTab("admin")}
|
||||
className={`${activeTab === "admin"
|
||||
className={`${
|
||||
activeTab === "admin"
|
||||
? "border-indigo-500 text-gray-900"
|
||||
: "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`}
|
||||
@@ -87,7 +92,8 @@ function App() {
|
||||
<button
|
||||
type="button"
|
||||
onClick={() => setActiveTab("topics")}
|
||||
className={`${activeTab === "topics"
|
||||
className={`${
|
||||
activeTab === "topics"
|
||||
? "border-indigo-500 text-gray-900"
|
||||
: "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`}
|
||||
@@ -99,7 +105,8 @@ function App() {
|
||||
<button
|
||||
type="button"
|
||||
onClick={() => setActiveTab("users")}
|
||||
className={`${activeTab === "users"
|
||||
className={`${
|
||||
activeTab === "users"
|
||||
? "border-indigo-500 text-gray-900"
|
||||
: "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`}
|
||||
|
||||
11
biome.json
11
biome.json
@@ -71,5 +71,16 @@
|
||||
"organizeImports": "on"
|
||||
}
|
||||
}
|
||||
},
|
||||
"overrides": [
|
||||
{
|
||||
"includes": ["apps/server/drizzle/meta/**"],
|
||||
"linter": {
|
||||
"enabled": false
|
||||
},
|
||||
"formatter": {
|
||||
"enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user