diff --git a/.husky/pre-commit b/.husky/pre-commit index 7b872324..e02c24e2 100644 --- a/.husky/pre-commit +++ b/.husky/pre-commit @@ -1 +1 @@ -bun run build +pnpm lint-staged \ No newline at end of file diff --git a/.husky/pre-push b/.husky/pre-push index 74b61eec..b0c0c4fc 100644 --- a/.husky/pre-push +++ b/.husky/pre-push @@ -1,2 +1,2 @@ -bun run build -# git pull --rebase origin main +pnpm build + diff --git a/apps/core/app/(landing)/_components/PurchaseCard.tsx b/apps/core/app/(landing)/_components/PurchaseCard.tsx index 61269a16..888450c0 100644 --- a/apps/core/app/(landing)/_components/PurchaseCard.tsx +++ b/apps/core/app/(landing)/_components/PurchaseCard.tsx @@ -1,4 +1,6 @@ -import { Button, Select, Typography } from "@repo/ui/components"; +import { Button } from "@repo/ui/components/atoms/button"; +import { Select } from "@repo/ui/components/molecules/select"; +import { Typography } from "@repo/ui/components/atoms/typography"; import { IconDownload } from "@tabler/icons-react"; import Image from "next/image"; diff --git a/apps/core/app/(landing)/_components/TextGenerateEffect.tsx b/apps/core/app/(landing)/_components/TextGenerateEffect.tsx index fc25c20c..e96cb714 100644 --- a/apps/core/app/(landing)/_components/TextGenerateEffect.tsx +++ b/apps/core/app/(landing)/_components/TextGenerateEffect.tsx @@ -2,7 +2,7 @@ import { useEffect } from "react"; import { motion, stagger, useAnimate } from "framer-motion"; import { cn } from "@repo/ui/lib/utils"; -import { Typography } from "@repo/ui/components"; +import { Typography } from "@repo/ui/components/atoms/typography"; export const TextGenerateEffect = ({ words, @@ -27,7 +27,7 @@ export const TextGenerateEffect = ({ { duration: duration ? duration : 1, delay: stagger(0.2), - } + }, ); }, [scope.current]); @@ -54,7 +54,7 @@ export const TextGenerateEffect = ({ return (