1. Updated packages (#211)

1. Updated packages
2. Improved responsiveness
This commit is contained in:
Giancarlo Buomprisco
2025-03-18 19:07:10 +07:00
committed by GitHub
parent d415263b81
commit 4bba67246b
34 changed files with 1107 additions and 962 deletions

View File

@@ -9,9 +9,9 @@
},
"dependencies": {
"@hookform/resolvers": "^4.1.3",
"@tanstack/react-query": "5.67.3",
"lucide-react": "^0.479.0",
"next": "15.2.2",
"@tanstack/react-query": "5.68.0",
"lucide-react": "^0.482.0",
"next": "15.2.3",
"nodemailer": "^6.10.0",
"react": "19.0.0",
"react-dom": "19.0.0"
@@ -22,15 +22,15 @@
"@kit/shared": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@kit/ui": "workspace:*",
"@tailwindcss/postcss": "^4.0.13",
"@types/node": "^22.13.4",
"@tailwindcss/postcss": "^4.0.14",
"@types/node": "^22.13.10",
"@types/nodemailer": "6.4.17",
"@types/react": "19.0.10",
"@types/react": "19.0.11",
"@types/react-dom": "19.0.4",
"babel-plugin-react-compiler": "19.0.0-beta-e1e972c-20250221",
"pino-pretty": "^13.0.0",
"react-hook-form": "^7.54.2",
"tailwindcss": "4.0.13",
"tailwindcss": "4.0.14",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.8.2",
"zod": "^3.24.2"

View File

@@ -12,8 +12,8 @@
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.51.0",
"@types/node": "^22.13.4",
"@playwright/test": "^1.51.1",
"@types/node": "^22.13.10",
"node-html-parser": "^7.0.1",
"totp-generator": "^1.0.0"
}

View File

@@ -77,7 +77,7 @@ function AuthButtons() {
</Link>
</Button>
<Button asChild className="group" variant={'default'}>
<Button asChild className="text-xs md:text-sm" variant={'default'}>
<Link href={pathsConfig.auth.signUp}>
<Trans i18nKey={'auth:signUp'} />
</Link>

View File

@@ -97,20 +97,20 @@ function Home() {
<FeatureCard
className={
'relative col-span-1 w-full overflow-hidden lg:col-span-1'
'relative col-span-1 w-full overflow-hidden'
}
label={'Authentication'}
description={`Makerkit provides a variety of providers to allow your users to sign in.`}
></FeatureCard>
<FeatureCard
className={'relative col-span-2 overflow-hidden lg:col-span-1'}
className={'relative overflow-hidden col-span-1'}
label={'Multi Tenancy'}
description={`Multi tenant memberships for your SaaS business.`}
/>
<FeatureCard
className={'relative col-span-1 overflow-hidden lg:col-span-2'}
className={'relative col-span-1 overflow-hidden md:col-span-2'}
label={'Billing'}
description={`Makerkit supports multiple payment gateways to charge your customers.`}
/>

View File

@@ -57,11 +57,11 @@
"@marsidev/react-turnstile": "^1.1.0",
"@radix-ui/react-icons": "^1.3.2",
"@supabase/supabase-js": "2.49.1",
"@tanstack/react-query": "5.67.3",
"@tanstack/react-query": "5.68.0",
"@tanstack/react-table": "^8.21.2",
"date-fns": "^4.1.0",
"lucide-react": "^0.479.0",
"next": "15.2.2",
"lucide-react": "^0.482.0",
"next": "15.2.3",
"next-sitemap": "^4.2.3",
"next-themes": "0.4.6",
"react": "19.0.0",
@@ -77,10 +77,10 @@
"@kit/eslint-config": "workspace:*",
"@kit/prettier-config": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@next/bundle-analyzer": "15.2.2",
"@tailwindcss/postcss": "^4.0.13",
"@types/node": "^22.13.4",
"@types/react": "19.0.10",
"@next/bundle-analyzer": "15.2.3",
"@tailwindcss/postcss": "^4.0.14",
"@types/node": "^22.13.10",
"@types/react": "19.0.11",
"@types/react-dom": "19.0.4",
"autoprefixer": "^10.4.20",
"babel-plugin-react-compiler": "19.0.0-beta-e1e972c-20250221",
@@ -88,8 +88,8 @@
"dotenv-cli": "^8.0.0",
"pino-pretty": "^13.0.0",
"prettier": "^3.5.3",
"supabase": "^2.19.5",
"tailwindcss": "4.0.13",
"supabase": "^2.19.7",
"tailwindcss": "4.0.14",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.8.2"
},