Skip to content

Commit c7f1893

Browse files
rename project to better-vitals
Rename the monorepo and workspace packages from lite-app to better-vitals.
1 parent f4052f0 commit c7f1893

49 files changed

Lines changed: 116 additions & 116 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.agents/skills/ux-writing/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: >-
55
Use when writing or editing user-facing copy — buttons, toasts, form errors,
66
empty states, loading states, auth pages, or auditing UI text.
77
metadata:
8-
author: lite-app
8+
author: better-vitals
99
version: "1.0.0"
1010
---
1111

apps/dashboard/.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ BETTER_AUTH_URL=http://localhost:5173
44

55
# Resend
66
RESEND_API_KEY=
7-
EMAIL_FROM=Lite App Vitals <noreply@resend.dev>
7+
EMAIL_FROM=Better Vitals <noreply@resend.dev>

apps/dashboard/app/app.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@import "tailwindcss";
2-
@import "@lite-app/ui";
2+
@import "@better-vitals/ui";
33

44
body {
55
@apply bg-background;

apps/dashboard/app/components/action-data-context.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { createContext } from "@lite-app/shared/create-context";
1+
import { createContext } from "@better-vitals/shared/create-context";
22
import type { ValidationErrors } from "@react-types/shared";
33

44
import { FormAlert } from "~/components/form-alert";

apps/dashboard/app/components/form-alert.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {
33
AlertContent,
44
AlertIndicator,
55
AlertTitle,
6-
} from "@lite-app/ui/components/alert";
6+
} from "@better-vitals/ui/components/alert";
77
import { tv, type VariantProps } from "tailwind-variants";
88

99
const formAlertVariants = tv({

apps/dashboard/app/components/form-card.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
type CardDescriptionProps,
99
type CardFooterProps,
1010
type CardHeaderProps,
11-
} from "@lite-app/ui/components/card";
11+
} from "@better-vitals/ui/components/card";
1212
import { cn } from "tailwind-variants";
1313

1414
interface FormCardHeaderProps extends CardHeaderProps {}

apps/dashboard/app/components/form.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import {
22
Form as UIForm,
33
type FormProps as UIFormProps,
4-
} from "@lite-app/ui/components/form";
4+
} from "@better-vitals/ui/components/form";
55
import { useSubmit, type SubmitOptions } from "react-router";
66

77
import {

apps/dashboard/app/components/submit-button.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { Button, type ButtonProps } from "@lite-app/ui/components/button";
2-
import { Spinner } from "@lite-app/ui/components/spinner";
1+
import { Button, type ButtonProps } from "@better-vitals/ui/components/button";
2+
import { Spinner } from "@better-vitals/ui/components/spinner";
33
import { cn } from "tailwind-variants";
44

55
interface SubmitButtonProps extends Omit<ButtonProps, "type"> {}

apps/dashboard/app/lib/auth/error.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertNever } from "@lite-app/shared/assert-never";
1+
import { assertNever } from "@better-vitals/shared/assert-never";
22
import type { ValidationErrors } from "@react-types/shared";
33
import * as errore from "errore";
44
import { z } from "zod";

apps/dashboard/app/lib/auth/guards.server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { isDefined } from "@lite-app/shared/is-defined";
1+
import { isDefined } from "@better-vitals/shared/is-defined";
22
import {
33
redirect,
44
redirectDocument,

0 commit comments

Comments
 (0)