diff --git a/src/App.js b/src/App.js index 3d3e0fc..f308299 100644 --- a/src/App.js +++ b/src/App.js @@ -1,6 +1,9 @@ import { BrowserRouter, Routes, Route } from 'react-router-dom'; import Welcome from './pages/Welcome'; import Projects from './pages/Projects'; +import Technologies from './pages/Technologies'; +import Links from './pages/Links'; +import InProgress from './pages/InProgress'; import './App.css'; function App() { @@ -10,6 +13,9 @@ function App() { } /> } /> + } /> + } /> + } /> diff --git a/src/pages/InProgress.js b/src/pages/InProgress.js index e69de29..8a417ae 100644 --- a/src/pages/InProgress.js +++ b/src/pages/InProgress.js @@ -0,0 +1,6 @@ +export default function InProgress() { + return ( + <> + + ) +} \ No newline at end of file diff --git a/src/pages/Links.js b/src/pages/Links.js index e69de29..f0291c5 100644 --- a/src/pages/Links.js +++ b/src/pages/Links.js @@ -0,0 +1,21 @@ +export default function Links() { + return ( +
+

Find more about my work at the links below!

+ +
+
+ {/* An image here for a Github logo? */} + My Github +
+
+ {/* LinkedIn image? */} + My LinkedIn Profile +
+
+ My CodePen +
+
+
+ ) +} \ No newline at end of file diff --git a/src/pages/Projects.js b/src/pages/Projects.js index 60e2d60..c4e8f19 100644 --- a/src/pages/Projects.js +++ b/src/pages/Projects.js @@ -3,8 +3,18 @@ export default function Projects() { <>

What I Do:

-

Create full stack web applications

-

I

+
+

Create full stack web applications

+

I have experience building web applications with and without back-end integrations.

+

I am comfortable conceptualizing and organizing complex structures, and as such, my projects tend to be natural in their structure and easy to maintain.

+
+ +
+

Database Operations and Management

+

My projects have featured both relational and non-relational databases, in particular PostgreSQL and MongoDB.

+

I also have experience with various technologies for connecting these to front-end applications, including Prisma and Supabase.

+
+ ) } \ No newline at end of file diff --git a/src/pages/Technologies.js b/src/pages/Technologies.js index e69de29..732d811 100644 --- a/src/pages/Technologies.js +++ b/src/pages/Technologies.js @@ -0,0 +1,6 @@ +export default function Technologies() { + return ( + <> + + ) +} \ No newline at end of file