diff --git a/src/Main.tsx b/src/Main.tsx index a0ac266..ebf8941 100644 --- a/src/Main.tsx +++ b/src/Main.tsx @@ -3,15 +3,43 @@ import { Routes, Route } from 'react-router-dom'; import Home from './pages/Home'; import Blog from "./pages/Blog"; import SingleBlog from "./pages/SingleBlog"; +import Navbar from "./components/navbar/Navbar"; +import Hero from "./components/hero/Hero"; +import AboutMe from "./components/about-me/AboutMe"; +import Contact from "./components/contact/Contact"; +import Hobbies from "./components/hobbies/Hobbies"; +import Projects from "./components/projects/Projects"; + + +const NavBarView = (props: {children: any}) => { + return ( +
- I was born and raised in Austin, Texas. I've been writing code for nearly 7 years and I'm - currently going to The University of Texas at Austin and working as the Chief Technology Officer at Comp Wallet Corp. +
+ I'm from Austin, Texas. I've been writing code for nearly 9 years and I'm + currently going to The University of Texas at Austin
Previously, I founded a startup called CavCash where I wrote a - majority of our software.
I primarily do backend work and love working with databases. I'm also an - avid runner and entrepreneur.
+ I'm interested in infra and backend engineering. +
+If you would like to contact me, you can reach me at:
+ nickorlow@nickorlow.comscroll for more
); } diff --git a/src/components/hobbies/Hobbies.tsx b/src/components/hobbies/Hobbies.tsx index 6035a5a..fcc078c 100644 --- a/src/components/hobbies/Hobbies.tsx +++ b/src/components/hobbies/Hobbies.tsx @@ -20,7 +20,7 @@ export default function Hobbies () { alignItems: "center" }}>{AllBlogs[blogId].date.toLocaleDateString()}
- +Back