Skip to content

Commit

Permalink
Merge pull request #1 from sheidiz/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
sheidiz authored Oct 21, 2024
2 parents 2153449 + 9b4bbdb commit 0a70939
Show file tree
Hide file tree
Showing 39 changed files with 944 additions and 509 deletions.
24 changes: 12 additions & 12 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@ module.exports = {
root: true,
env: { browser: true, es2020: true },
extends: [
'eslint:recommended',
'plugin:react/recommended',
'plugin:react/jsx-runtime',
'plugin:react-hooks/recommended',
"eslint:recommended",
"plugin:react/recommended",
"plugin:react/jsx-runtime",
"plugin:react-hooks/recommended",
],
ignorePatterns: ['dist', '.eslintrc.cjs'],
parserOptions: { ecmaVersion: 'latest', sourceType: 'module' },
settings: { react: { version: '18.2' } },
plugins: ['react-refresh'],
ignorePatterns: ["dist", ".eslintrc.cjs"],
parserOptions: { ecmaVersion: "latest", sourceType: "module" },
settings: { react: { version: "18.2" } },
plugins: ["react-refresh"],
rules: {
'react/jsx-no-target-blank': 'off',
'react-refresh/only-export-components': [
'warn',
"react/jsx-no-target-blank": "off",
"react-refresh/only-export-components": [
"warn",
{ allowConstantExport: true },
],
},
}
};
3 changes: 3 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Ignore artifacts:
build
coverage
3 changes: 3 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"plugins": ["prettier-plugin-tailwindcss"]
}
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<h2 align="center">
Portfolio Website<br/>
<a href="https://sheiladiz.dev.ar/" target="_blank">sheiladiz.dev.ar</a>
<a href="https://sheiladiz.vercel.app/" target="_blank">sheiladiz.vercel.app</a>
</h2>
<div align="center">
<img alt="Demo" src="./public/web.png" />
Expand All @@ -10,12 +10,14 @@

## Tecnologías utilizadas

Mi portfolio personal <a href="https://sheiladiz.dev.ar/" target="_blank">sheiladiz.dev.ar</a> contiene mis proyectos de github, además de mis habilidades y conocimientos.<br/>
Mi portfolio personal contiene mis proyectos de github, además de mis habilidades y conocimientos.<br/>

Este proyecto fue construido usando estas tecnologias y herramientas
- React.js
- Vite.js
Este proyecto fue construido usando estas tecnologias y herramientas:

- React
- Vite
- Tailwind
- CSS3
- Framer Motion
- VsCode
- Vercel
6 changes: 6 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet"
/>
<title>Sheila Diz - Full Stack Java Developer</title>
</head>
<body>
Expand Down
129 changes: 129 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"preview": "vite preview"
},
"dependencies": {
"framer-motion": "^11.11.9",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet-async": "^2.0.5",
Expand All @@ -25,6 +26,8 @@
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"postcss": "^8.4.40",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"tailwindcss": "^3.4.7",
"vite": "^5.3.4"
}
Expand Down
2 changes: 1 addition & 1 deletion postcss.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ export default {
tailwindcss: {},
autoprefixer: {},
},
}
};
Binary file added public/web-v1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/web.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
62 changes: 33 additions & 29 deletions src/App.jsx
Original file line number Diff line number Diff line change
@@ -1,38 +1,42 @@
import { useContext } from "react"
import { DarkModeContext } from "./contexts/DarkModeContext"
import { Helmet, HelmetProvider } from "react-helmet-async"
import Navbar from "./components/Navbar"
import ScrollToTopButton from "./components/ScrollToTopButton"
import About from "./sections/About"
import Languages from "./sections/Languages"
import Experience from "./sections/Experience"
import Projects from "./sections/Projects"
import { useContext } from "react";
import { DarkModeContext } from "./contexts/DarkModeContext";
import { Helmet, HelmetProvider } from "react-helmet-async";
import Navbar from "./components/layout/Navbar";
import ScrollToTopButton from "./components/layout/ScrollToTopButton";
import About from "./sections/About";
import Experience from "./sections/Experience";
import Projects from "./sections/Projects";

function App() {
const { isDarkMode } = useContext(DarkModeContext);

return (
<HelmetProvider>
<div className={isDarkMode ? 'dark' : ''}>
<Helmet>
<title>Sheila Diz - Full Stack Java Developer</title>
<meta name="description" content="En búsqueda de mi primer empleo como desarrolladora, donde pueda contribuir con mis habilidades y conocimientos en un entorno laboral dinámico." />
<meta name="keywords" content="Sheila Diz, desarrolladora, full stack, back end, java, spring, trainee, empleo, trabajo, programación" />
<link rel="icon" href="/favicon.ico" />
</Helmet>
<header className="py-2 font-primary">
<Navbar />
</header>
<main className="pb-5 font-primary">
<About />
<Languages />
<Experience />
<Projects />
<ScrollToTopButton />
</main>
</div>
<div className={isDarkMode ? "dark" : ""}>
<Helmet>
<title>Sheila Diz - Full Stack Java Developer</title>
<meta
name="description"
content="En búsqueda de mi primer empleo como desarrolladora, donde pueda contribuir con mis habilidades y conocimientos en un entorno laboral dinámico."
/>
<meta
name="keywords"
content="Sheila Diz, desarrolladora, full stack, back end, java, spring, trainee, empleo, trabajo, programación"
/>
<link rel="icon" href="/favicon.ico" />
</Helmet>
<header className="p-2 font-primary">
<Navbar />
</header>
<main className="pb-5 font-primary">
<About />
<Experience />
<Projects />
<ScrollToTopButton />
</main>
</div>
</HelmetProvider>
)
);
}

export default App
export default App;
Binary file removed src/assets/Perfil.jpeg
Binary file not shown.
Binary file added src/assets/Perfil.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/icons/tailwind.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
35 changes: 0 additions & 35 deletions src/components/Accordion.jsx

This file was deleted.

Loading

0 comments on commit 0a70939

Please sign in to comment.