-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from sheidiz/develop
Develop
- Loading branch information
Showing
39 changed files
with
944 additions
and
509 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Ignore artifacts: | ||
build | ||
coverage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"plugins": ["prettier-plugin-tailwindcss"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,4 @@ export default { | |
tailwindcss: {}, | ||
autoprefixer: {}, | ||
}, | ||
} | ||
}; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.