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
391 B

import React from "react";
import Container from "../../components/Container";
import Dashed from "../../components/Dashed";
const Home: React.FC = () => {
return (
<Container>
<h1>MKRhere</h1>
<p>
Web home of <Dashed>designer</Dashed>, <Dashed>developer</Dashed>, and{" "}
<Dashed>architect</Dashed> <b>Muthu Kumar.</b>
</p>
</Container>
);
};
export default Home;