diff --git a/src/App.jsx b/src/App.jsx deleted file mode 100644 index f7c5de5..0000000 --- a/src/App.jsx +++ /dev/null @@ -1,28 +0,0 @@ -/** - * Application component - * - * To contain application wide settings, routes, state, etc. - */ - -import React from "react"; -import Header from "./Components/Header"; -const siteProps = { - name: "Pablo Oca Galeano", - title: "Junior Back-End Developer", - email: "pabloocagal03@gmail.com", -}; - -// ... - -const App = () => { - return ( - <> -
-

{siteProps.name}

-

{siteProps.title}

-

{siteProps.email}

- - ); -}; - -export default App; \ No newline at end of file diff --git a/src/Components/Header.jsx b/src/Components/Header.jsx deleted file mode 100644 index b320319..0000000 --- a/src/Components/Header.jsx +++ /dev/null @@ -1,13 +0,0 @@ -/** - * Header Component - * - * Sample of a single responsibility component - */ - -import React from "react"; - -const Header = () => { - return

Pablo Oca Galeano Portfolio

; -}; - -export default Header; diff --git a/src/index.html b/src/index.html index 0fc879b..fade325 100644 --- a/src/index.html +++ b/src/index.html @@ -1,19 +1,95 @@ - - - - - Pablo Oca Galeano Portfolio - + + + + + Resume + + + + + +
+
+

Pablo Oca Galeano

+
pabloocagal03@gmail.com
+ +
+

+ + Social media +

+ +
+ +
+
+

+ + Pablo de Olavide University +

+

Computer engineering in information systems

+
    +
  • 4 yeas
  • +
+
+
+ +
+

+ + Skills +

+
    +
  • CSS
  • +
  • HTML
  • +
  • JavaScript
  • +
  • Git
  • +
  • Visual Studio Code
  • +
  • Python
  • +
  • Java
  • +
  • Odoo
  • +
  • Hibernate
  • +
+
+
+
+
+

+ + Experience +

+

Microsoft Learn Student Ambassador

+
    +
  • Public Speaking
  • +
  • Event Organizing
  • +
+

Free Software Association of the Pablo de Olavide University

+
    +
  • Team Building
  • +
  • Team Organizing
  • +
+
+
+

+ + Projects +

+ +

2048 Game Algorithmn

+
I made an algorithmn in order to play the 2048 game.
+
Technology Used:
+
    +
  • Java
  • +
  • Mongo DB Database
  • +
+
+
- - - -
- -
- - - - +
+ + \ No newline at end of file diff --git a/src/index.js b/src/index.js deleted file mode 100644 index 6fb80ae..0000000 --- a/src/index.js +++ /dev/null @@ -1,10 +0,0 @@ -/** - * Entry point of application, where App is rendered within the div with the id of "app" - */ - -import React from "react"; -import { render } from "react-dom"; - -import App from "./App"; - -render(, document.getElementById("app")); diff --git a/src/styles.css b/src/styles.css index 02638c6..2d104a3 100644 --- a/src/styles.css +++ b/src/styles.css @@ -1,14 +1,47 @@ -/** -* CSS file to hold styles that apply across the application -*/ body { - display: flex; - justify-content: center; + font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; + font-size: 18px; + margin: 1% 5%; + background-color:E6F7FF; } -img { - width: 300px; /* Adjust the size as needed */ - height: 400px; /* Adjust the size as needed */ - margin-left: auto; /* Adjust the spacing as needed */ - margin-top: 50px; /* Adjust the spacing as needed */ +main { + display: grid; + grid-template-columns: 50% 50%; +} + + +.box { + box-shadow: .1em .1em .2em #80D4FF; + border-radius: .4em; + border-width: .01em; + border-style: solid; + margin-left: .4em; + padding: .0em .5em .1em .5em; + margin-bottom: .5em; + margin-top: .3em; +} + +h1 { + color: navy; + margin: 0em; + display: block; +} + +h2 { + color: navy; + font-size: 1.2em; + margin: 0em; +} + +h3 { + color: navy; + font-size: 1em; + margin: 0em; +} + +ul { + margin: 0em 0em .3em 0em; + list-style-type: square; + padding-left: 1.4em; } \ No newline at end of file