Portfolio-v3/pages/about.js
Robert S 41b39bda69
Cleaned up the code and made it use flexbox
Oh and there's also a nav indicator now :)
2021-10-13 18:42:23 +02:00

64 lines
4 KiB
JavaScript

import Head from "next/head";
import Navbar from "../components/Navbar";
import Footer from "../components/Footer";
import { motion } from "framer-motion";
export default function About() {
return (
<div>
<Head>
<title>Robert S. - About me</title>
<link rel="icon" href="/favicon.ico" />
<meta property="og:title" content="Robert S. - About me" />
<meta property="og:description" content="A developer and tech enthusiast from the Netherlands." />
<meta property="og:url" content="https://robert-s.dev/about" />
<meta property="og:image" content="https://robert-s.dev/logo.jpg" />
<meta name="theme-color" content="#F43F5E" />
</Head>
<div className="flex flex-col min-h-screen">
<Navbar />
<div className="flex flex-grow items-center">
<div className="w-full">
<div className="container flex mx-auto justify-center">
<motion.div initial={{ opacity: 0 }} animate={{ opacity: [0, 1] }} transition={{ duration: 0.5 }}>
<h1 className="text-center md:text-6xl text-3xl font-bold">
About <span className="text-rose-500">me</span>
</h1>
<div className="container lg:w-3/5 w-11/12 mx-auto">
<div className="text-left md:text-justify space-y-6 text-lg font-medium text-gray-200">
<p>
Hey, I'm Robert - a full-stack developer from the Netherlands with approximately three years of back-end and five years of front-end development experience. Nowadays, I mainly use Next.js, TailwindCSS and Python for my projects, but I have used different tools and frameworks in the past. I also love the open-source community, <a className="text-gray-200 underline" href="https://github.com/Wallvon/website" target="_blank" rel="noopener noreferrer">and this website is open-source too :)</a>. My coding knowledge is mostly based on many years of experimenting and trying, and I am happy to have made it this far.
</p>
<div className="space-y-2">
<p>
I can use the following technologies/frameworks mostly fluently:
</p>
<ul className="list-disc pl-4">
<li>HTML, CSS & JS</li>
<li>TailwindCSS, Bootstrap, UIkit & Cirrus UI</li>
<li>Python</li>
<li>Flask & similar frameworks (like Sanic)</li>
<li>MySQL, PostgreSQL, MongoDB, Redis</li>
</ul>
<p>
And I am currently learning the following technologies/frameworks:
</p>
<ul className="list-disc pl-4">
<li>Go</li>
<li>Rust</li>
<li>React/Next.js</li>
<li>Docker</li>
</ul>
</div>
</div>
</div>
</motion.div>
</div>
</div>
</div>
<Footer />
</div>
</div>
)
}