code/pages/index.tsx

18 lines
353 B
TypeScript
Raw Normal View History

import Main from '../components/Home/Main';
import MadeWithLove from '../components/MadeWithLove';
import Projects from '../components/Home/Projects';
function Index() {
return (
<div>
<Main />
<Projects />
2022-08-06 08:44:27 +00:00
<div class='flex-initial md:hidden py-4'>
<MadeWithLove />
</div>
</div>
);
}
export default Index;