diff --git a/src/components/Dashed.js b/src/components/Dashed.js new file mode 100644 index 0000000..379d29d --- /dev/null +++ b/src/components/Dashed.js @@ -0,0 +1,12 @@ +import { css } from "emotion"; + +const Dashed = props => ( + + {props.children} + +); + +export default Dashed; diff --git a/src/pages/Exp.js b/src/pages/Exp.js index dbcaab7..6d22843 100644 --- a/src/pages/Exp.js +++ b/src/pages/Exp.js @@ -75,7 +75,7 @@ const ExpUnit = ({ title, location, position, year }) => { function Exp() { return ( - +

I’m a 25 year old developer from Chennai, India.

Here are some places I’ve worked at:

{exp.map(unit => ( - + ))}
diff --git a/src/pages/Home.js b/src/pages/Home.js index 877ccef..b12cef2 100644 --- a/src/pages/Home.js +++ b/src/pages/Home.js @@ -1,20 +1,10 @@ -import { css } from "emotion"; import Container from "../components/Container"; -import Heading from "../components/Heading"; - -const Dashed = props => ( - - {props.children} - -); +import Dashed from "../components/Dashed"; function Home() { return ( - - MKRhere + +

MKRhere

Web home of designer, developer, and{" "} architect Muthu Kumar. diff --git a/src/pages/Projects.js b/src/pages/Projects.js index 3494635..5f39a0e 100644 --- a/src/pages/Projects.js +++ b/src/pages/Projects.js @@ -24,25 +24,25 @@ const exp = [ tags: ["minecraft", "node"], }, { - title: window.location.hostname, - description: "This website.", - url: "https://github.com/mkrhere/pw2", + title: "mkr/bin", + description: "Frontend JavaScript-free code-sharing pastebin app.", + url: "https://github.com/mkrhere/bin", cat: "web", - tags: ["react", "css-in-js"], + tags: ["mithril", "ssr", "pastebin"], }, { - title: "runtype", - description: "Runtime-safe library to bring untyped values into TypeScript.", - url: "https://codefeathers.github.io/runtype", - cat: "lib", - tags: ["typescript", "runtime"], + title: "The Guard", + description: "Telegram bot to help administer networks with large number of groups.", + url: "https://github.com/thedevs-network/the-guard", + cat: "bot", + tags: ["telegram", "bot"], }, { - title: "Telecraft", - description: "Pluggable Minecraft server management utils.", - url: "https://github.com/telecraft", - cat: "tool", - tags: ["minecraft", "node"], + title: "vy", + description: "(in dev) Stream-first functional utilities library.", + url: "https://github.com/MKRhere/vy", + cat: "lib", + tags: ["typescript", "stream", "functional-programming"], }, ]; @@ -103,7 +103,7 @@ const ProjectUnit = ({ title, url, description, cat, tags }) => { right: 1rem; bottom: 1rem; font-weight: bold; - color: #bbb; + color: #bbbbbb; font-size: 0.8rem; `}> {cat} @@ -115,7 +115,7 @@ const ProjectUnit = ({ title, url, description, cat, tags }) => { function Exp() { return ( - +

What else have I built?

Some tools, libraries, and apps over time:

{exp.map(unit => ( - + ))}