fido-node.github.io/pages/index.tsx
2021-04-28 22:31:42 +03:00

15 lines
331 B
TypeScript

import * as React from 'react';
import Footer from '../components/Footer';
import PersonalCard from '../components/personal-card/PersonalCard';
const Home = () => {
return (
<div className="bg-gray-100 flex flex-col h-screen justify-between">
<PersonalCard />
<Footer />
</div>
);
};
export default Home;