Skip to content

Commit

Permalink
Merge pull request #1 from JJozef/new-design-2024
Browse files Browse the repository at this point in the history
Nuevo diseño 2024
  • Loading branch information
JJozef authored Mar 15, 2024
2 parents 923f879 + 1e03fef commit b7a0249
Show file tree
Hide file tree
Showing 89 changed files with 4,107 additions and 3,055 deletions.
4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
/node_modules
/.pnp
.pnp.js
.yarn/install-state.gz

# testing
/coverage
Expand Down Expand Up @@ -33,6 +34,3 @@ yarn-error.log*
# typescript
*.tsbuildinfo
next-env.d.ts

#only dev
.PRO-TERMINAR.MD
17 changes: 17 additions & 0 deletions components.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"$schema": "https://ui.shadcn.com/schema.json",
"style": "new-york",
"rsc": true,
"tsx": false,
"tailwind": {
"config": "tailwind.config.js",
"css": "src/app/globals.css",
"baseColor": "neutral",
"cssVariables": true,
"prefix": ""
},
"aliases": {
"components": "@/components",
"utils": "@/lib/utils"
}
}
10 changes: 10 additions & 0 deletions config/site.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
export const siteConfig = {
name: 'Jose Ignacio',
url: 'https://joseignacio.dev',
ogImage: '/og.png',
description: 'Portafolio de Jose Ignacio.',
links: {
twitter: 'https://twitter.com/jozefzin',
github: 'https://github.com/jjozef/joseignacio.dev'
}
}
1 change: 1 addition & 0 deletions jsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"compilerOptions": {
"paths": {
"@/root/*": ["./*"],
"@/*": ["./src/*"]
}
}
Expand Down
6 changes: 0 additions & 6 deletions next.config.js

This file was deleted.

8 changes: 8 additions & 0 deletions next.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
domains: ['avatars.githubusercontent.com']
}
}

export default nextConfig
42 changes: 23 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jozef",
"version": "0.1.0",
"name": "joseignacio.dev",
"version": "2.0.0",
"private": true,
"scripts": {
"dev": "next dev",
Expand All @@ -9,25 +9,29 @@
"lint": "next lint"
},
"dependencies": {
"@heroicons/react": "1.0.6",
"@tremor/react": "^2.9.1",
"autoprefixer": "10.4.14",
"clsx": "^2.0.0",
"eslint": "8.41.0",
"eslint-config-next": "13.4.4",
"focus-visible": "^5.2.0",
"framer-motion": "^10.15.0",
"next": "13.4.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-slot": "^1.0.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"framer-motion": "^11.0.8",
"lucide-react": "^0.354.0",
"next": "14.1.3",
"next-themes": "^0.2.1",
"postcss": "8.4.24",
"postcss-focus-visible": "^9.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "3.3.2",
"zustand": "^4.3.9"
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwind-merge": "^2.2.1",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"prettier": "^2.8.8",
"standard": "^17.0.0"
"@tailwindcss/typography": "^0.5.10",
"autoprefixer": "^10.4.18",
"eslint": "^8.57.0",
"eslint-config-next": "14.1.3",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"standard": "^17.1.0",
"tailwindcss": "^3.4.1"
}
}
Loading

0 comments on commit b7a0249

Please sign in to comment.