updated images

This commit is contained in:
2025-10-20 04:52:34 -04:00
parent 093134abf0
commit 20a87064d8
4 changed files with 30 additions and 29 deletions

2
.npmrc
View File

@@ -1,3 +1,3 @@
package-lock=false
save-exact=true
@techniker-me:regi
@techniker-me:registry="https://npm.techniker.me"

View File

@@ -1,39 +1,42 @@
{
"name": "painter-portfolio",
"private": true,
"version": "0.0.0",
"version": "0.0.1",
"type": "module",
"scripts": {
"ci-build:dist": "npm run build",
"dev": "vite",
"prebuild": "npm run lint",
"build": "tsc -b && vite build",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"preview": "vite preview"
},
"dependencies": {
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.545.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7"
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"lucide-react": "0.545.0",
"react": "19.1.1",
"react-dom": "19.1.1",
"tailwind-merge": "3.3.1",
"tailwindcss-animate": "1.0.7"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@types/node": "^24.7.2",
"@types/react": "^19.1.16",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^5.0.4",
"autoprefixer": "^10.4.21",
"eslint": "^9.36.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.22",
"globals": "^16.4.0",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"tailwindcss": "^3.4.18",
"@eslint/js": "9.36.0",
"@types/node": "24.7.2",
"@types/react": "19.1.16",
"@types/react-dom": "19.1.9",
"@vitejs/plugin-react": "5.0.4",
"autoprefixer": "10.4.21",
"eslint": "9.36.0",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-react-refresh": "0.4.22",
"globals": "16.4.0",
"postcss": "8.5.6",
"prettier": "3.6.2",
"tailwindcss": "3.4.18",
"typescript": "~5.9.3",
"typescript-eslint": "^8.45.0",
"vite": "^7.1.7"
"typescript-eslint": "8.45.0",
"vite": "7.1.7"
}
}

View File

@@ -1,7 +1,7 @@
import * as React from 'react';
import {cva, type VariantProps} from 'class-variance-authority';
import {cn} from '@/lib/utils';
/* eslint-disable */
const buttonVariants = cva(
'inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50',
{

View File

@@ -1,9 +1,7 @@
import * as React from 'react';
import {cn} from '@/lib/utils';
export interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {}
const Input = React.forwardRef<HTMLInputElement, InputProps>(({className, type, ...props}, ref) => {
const Input = React.forwardRef<HTMLInputElement, React.InputHTMLAttributes<HTMLInputElement>>(({className, type, ...props}, ref) => {
return (
<input
type={type}