Skip to content

Commit

Permalink
chore(app): rename contacts to customers
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamincanac committed Feb 13, 2025
1 parent 556ee01 commit b4efadd
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion app/components/home/HomeStats.vue
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ const { data: stats } = await useAsyncData<Stat[]>('stats', async () => {
:key="index"
:icon="stat.icon"
:title="stat.title"
to="/contacts"
to="/customers"
variant="subtle"
:ui="{
container: 'gap-y-1.5',
Expand Down
4 changes: 2 additions & 2 deletions app/layouts/default.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ const links = [[{
to: '/inbox',
badge: '4'
}, {
label: 'Contacts',
label: 'Customers',
icon: 'i-lucide-users',
to: '/contacts'
to: '/customers'
}, {
label: 'Settings',
to: '/settings',
Expand Down
4 changes: 2 additions & 2 deletions app/pages/contacts.vue → app/pages/customers.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<UDashboardPanel id="contacts">
<UDashboardPanel id="customers">
<template #header>
<UDashboardNavbar title="Contacts">
<UDashboardNavbar title="Customers">
<template #leading>
<UDashboardSidebarCollapse />
</template>
Expand Down
4 changes: 2 additions & 2 deletions app/pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ const items = [[{
icon: 'i-heroicons-paper-airplane',
to: '/inbox'
}, {
label: 'New user',
label: 'New customer',
icon: 'i-heroicons-user-plus',
to: '/contacts'
to: '/customers'
}]]
const range = shallowRef<Range>({
Expand Down

0 comments on commit b4efadd

Please sign in to comment.