realtimex-crm 0.1.2 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +53 -16
- package/dist/assets/{DealList-DqDrFeDV.js → DealList-BVEX05UH.js} +2 -2
- package/dist/assets/{DealList-DqDrFeDV.js.map → DealList-BVEX05UH.js.map} +1 -1
- package/dist/assets/{index-CDIy4x-0.js → index-ChDTDzD2.js} +3 -3
- package/dist/assets/{index-CDIy4x-0.js.map → index-ChDTDzD2.js.map} +1 -1
- package/dist/index.html +1 -1
- package/dist/stats.html +1 -1
- package/package.json +1 -1
- package/src/components/atomic-crm/dashboard/Welcome.tsx +7 -7
- package/src/components/atomic-crm/login/SignupPage.tsx +1 -1
- package/src/components/atomic-crm/root/defaultConfiguration.ts +1 -1
- package/src/components/atomic-crm/setup/SupabaseSetupWizard.tsx +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "realtimex-crm",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "RealTimeX CRM - A full-featured CRM built with React, shadcn-admin-kit, and Supabase. Fork of Atomic CRM with RealTimeX App SDK integration.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -8,12 +8,12 @@ export const Welcome = () => (
|
|
|
8
8
|
<CardContent className="px-4">
|
|
9
9
|
<p className="text-sm mb-4">
|
|
10
10
|
<a
|
|
11
|
-
href="https://
|
|
11
|
+
href="https://github.com/therealtimex/realtimex-crm"
|
|
12
12
|
className="underline hover:no-underline"
|
|
13
13
|
>
|
|
14
|
-
|
|
14
|
+
RealTimeX CRM
|
|
15
15
|
</a>{" "}
|
|
16
|
-
is a
|
|
16
|
+
is a full-featured CRM designed to help you manage contacts, deals, and tasks.
|
|
17
17
|
</p>
|
|
18
18
|
<p className="text-sm mb-4">
|
|
19
19
|
This demo runs on a mock API, so you can explore and modify the data. It
|
|
@@ -27,14 +27,14 @@ export const Welcome = () => (
|
|
|
27
27
|
>
|
|
28
28
|
shadcn-admin-kit
|
|
29
29
|
</a>
|
|
30
|
-
|
|
30
|
+
. Fork of{" "}
|
|
31
31
|
<a
|
|
32
32
|
href="https://github.com/marmelab/atomic-crm"
|
|
33
33
|
className="underline hover:no-underline"
|
|
34
34
|
>
|
|
35
|
-
|
|
36
|
-
</a>
|
|
37
|
-
.
|
|
35
|
+
Atomic CRM
|
|
36
|
+
</a>{" "}
|
|
37
|
+
by Marmelab.
|
|
38
38
|
</p>
|
|
39
39
|
</CardContent>
|
|
40
40
|
</Card>
|
|
@@ -83,7 +83,7 @@ export const SignupPage = () => {
|
|
|
83
83
|
</div>
|
|
84
84
|
<div className="h-full">
|
|
85
85
|
<div className="max-w-sm mx-auto h-full flex flex-col justify-center gap-4">
|
|
86
|
-
<h1 className="text-2xl font-bold mb-4">Welcome to
|
|
86
|
+
<h1 className="text-2xl font-bold mb-4">Welcome to CRM</h1>
|
|
87
87
|
<p className="text-base mb-4">
|
|
88
88
|
Create the first user account to complete the setup.
|
|
89
89
|
</p>
|
|
@@ -3,7 +3,7 @@ import { Mars, NonBinary, Venus } from "lucide-react";
|
|
|
3
3
|
export const defaultDarkModeLogo = "./logos/logo_atomic_crm_dark.svg";
|
|
4
4
|
export const defaultLightModeLogo = "./logos/logo_atomic_crm_light.svg";
|
|
5
5
|
|
|
6
|
-
export const defaultTitle = "
|
|
6
|
+
export const defaultTitle = "CRM";
|
|
7
7
|
|
|
8
8
|
export const defaultCompanySectors = [
|
|
9
9
|
"Communication Services",
|
|
@@ -73,7 +73,7 @@ export function SupabaseSetupWizard({
|
|
|
73
73
|
<DialogHeader>
|
|
74
74
|
<div className="flex items-center gap-2 mb-2">
|
|
75
75
|
<Database className="h-6 w-6 text-primary" />
|
|
76
|
-
<DialogTitle>Welcome to
|
|
76
|
+
<DialogTitle>Welcome to CRM</DialogTitle>
|
|
77
77
|
</div>
|
|
78
78
|
<DialogDescription>
|
|
79
79
|
To get started, you'll need to connect to a Supabase database.
|