Markup
This commit is contained in:
parent
5e970125ef
commit
58c880bf18
@ -30,7 +30,7 @@ const typeToIcon: { [key in ContactType]: [IconDefinition, string?] } = {
|
|||||||
const ContactComp = ({ id, type }: Contact) => {
|
const ContactComp = ({ id, type }: Contact) => {
|
||||||
const iconDescr = typeToIcon[type];
|
const iconDescr = typeToIcon[type];
|
||||||
return (
|
return (
|
||||||
<div className={'p-3 '}>
|
<div className={'p-3'}>
|
||||||
<a
|
<a
|
||||||
className={'text-5xl text-gray-600' + ' ' + iconDescr[1]}
|
className={'text-5xl text-gray-600' + ' ' + iconDescr[1]}
|
||||||
href={contactToLink({ id, type })}
|
href={contactToLink({ id, type })}
|
||||||
|
@ -4,7 +4,7 @@ import PersonalCard from '../components/personal-card/PersonalCard';
|
|||||||
|
|
||||||
const Home = () => {
|
const Home = () => {
|
||||||
return (
|
return (
|
||||||
<div className="bg-gray-50 flex flex-col h-auto justify-between">
|
<div className="bg-gray-50 flex flex-col md:h-screen sm:h-full justify-between">
|
||||||
<PersonalCard />
|
<PersonalCard />
|
||||||
<Footer />
|
<Footer />
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user