Merge branch 'master' into feature/slicing

This commit is contained in:
fredy.siswanto
2025-02-24 21:52:32 +07:00
5 changed files with 28 additions and 7 deletions
@@ -0,0 +1,9 @@
import { TitleDashboard } from '~/components/ui/title-dashboard'
export const AdvertisementsPage = () => {
return (
<div className="relative">
<TitleDashboard title="Advertisement" />
</div>
)
}
+2 -5
View File
@@ -2,6 +2,7 @@ import { Field, Input, Label, Select } from '@headlessui/react'
import { SearchIcon } from '~/components/icons/search'
import { Pagination } from '~/components/ui/pagination'
import { TitleDashboard } from '~/components/ui/title-dashboard'
import { USERS } from './data'
@@ -19,11 +20,7 @@ export const UsersPage = () => {
return (
<div className="relative">
<div className="container mx-auto">
<section className="mb-5 flex items-center justify-between">
<h1 className="text-xl font-bold">User</h1>
</section>
</div>
<TitleDashboard title="Users" />
{/* filter section */}
<div className="mb-8 flex items-center gap-5 rounded-lg bg-gray-50 text-[#363636]">