add basic contact info layout
This commit is contained in:
		| @@ -31,7 +31,7 @@ const ContactForm = ({details}: {details: ContactDetails}) => { | ||||
|       </div> | ||||
|     </section> | ||||
|   ); | ||||
| } | ||||
| }; | ||||
|  | ||||
| const Contact: NextPage = () => { | ||||
|   return ( | ||||
| @@ -45,9 +45,7 @@ const Contact: NextPage = () => { | ||||
|           </TopLabel> | ||||
|           <div className="flex flex-row divide-x divide-neutral-500"> | ||||
|             {contacts.map((contactDetails, index) => { | ||||
|               return ( | ||||
|                 <ContactForm key={index} details={contactDetails} /> | ||||
|               ); | ||||
|               return <ContactForm key={index} details={contactDetails} />; | ||||
|             })} | ||||
|           </div> | ||||
|         </section> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Brandon Egger
					Brandon Egger