fido-node.github.io/pages/index.tsx

15 lines
344 B
TypeScript
Raw Normal View History

2021-04-28 22:31:42 +03:00
import * as React from 'react';
import Footer from '../components/Footer';
import PersonalCard from '../components/personal-card/PersonalCard';
2021-04-28 10:16:22 +03:00
const Home = () => {
2021-04-28 22:31:42 +03:00
return (
2021-05-06 21:21:20 +03:00
<div className="bg-gray-50 flex flex-col md:h-screen sm:h-full justify-between">
2021-04-28 22:31:42 +03:00
<PersonalCard />
<Footer />
</div>
);
2021-04-28 10:16:22 +03:00
};
2021-04-28 22:31:42 +03:00
export default Home;