mirror of https://github.com/mkrhere/pw2
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
425 B
18 lines
425 B
4 years ago
|
import React from "react";
|
||
3 years ago
|
import Container from "../../components/Container";
|
||
|
import Dashed from "../../components/Dashed";
|
||
5 years ago
|
|
||
4 years ago
|
const Home: React.FunctionComponent = () => {
|
||
5 years ago
|
return (
|
||
5 years ago
|
<Container next="/experience">
|
||
|
<h1>MKRhere</h1>
|
||
5 years ago
|
<p>
|
||
5 years ago
|
Web home of <Dashed>designer</Dashed>, <Dashed>developer</Dashed>, and{" "}
|
||
|
<Dashed>architect</Dashed> <b>Muthu Kumar.</b>
|
||
5 years ago
|
</p>
|
||
|
</Container>
|
||
|
);
|
||
4 years ago
|
};
|
||
5 years ago
|
|
||
|
export default Home;
|