mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-12 15:52:56 +10:00
Update bronzor.tsx
This commit is contained in:
@ -231,7 +231,7 @@ const Experience = () => {
|
|||||||
return (
|
return (
|
||||||
<Section<Experience> section={section} urlKey="url" summaryKey="summary">
|
<Section<Experience> section={section} urlKey="url" summaryKey="summary">
|
||||||
{(item) => (
|
{(item) => (
|
||||||
<div className="flex items-center justify-between">
|
<div className="flex items-start justify-between">
|
||||||
<div className="text-left">
|
<div className="text-left">
|
||||||
<div className="font-bold">{item.company}</div>
|
<div className="font-bold">{item.company}</div>
|
||||||
<div>{item.position}</div>
|
<div>{item.position}</div>
|
||||||
@ -253,7 +253,7 @@ const Education = () => {
|
|||||||
return (
|
return (
|
||||||
<Section<Education> section={section} urlKey="url" summaryKey="summary">
|
<Section<Education> section={section} urlKey="url" summaryKey="summary">
|
||||||
{(item) => (
|
{(item) => (
|
||||||
<div className="flex items-center justify-between">
|
<div className="flex items-start justify-between">
|
||||||
<div className="text-left">
|
<div className="text-left">
|
||||||
<div className="font-bold">{item.institution}</div>
|
<div className="font-bold">{item.institution}</div>
|
||||||
<div>{item.area}</div>
|
<div>{item.area}</div>
|
||||||
@ -276,7 +276,7 @@ const Awards = () => {
|
|||||||
return (
|
return (
|
||||||
<Section<Award> section={section} urlKey="url" summaryKey="summary">
|
<Section<Award> section={section} urlKey="url" summaryKey="summary">
|
||||||
{(item) => (
|
{(item) => (
|
||||||
<div className="flex items-center justify-between">
|
<div className="flex items-start justify-between">
|
||||||
<div className="text-left">
|
<div className="text-left">
|
||||||
<div className="font-bold">{item.title}</div>
|
<div className="font-bold">{item.title}</div>
|
||||||
<div>{item.awarder}</div>
|
<div>{item.awarder}</div>
|
||||||
@ -297,7 +297,7 @@ const Certifications = () => {
|
|||||||
return (
|
return (
|
||||||
<Section<Certification> section={section} urlKey="url" summaryKey="summary">
|
<Section<Certification> section={section} urlKey="url" summaryKey="summary">
|
||||||
{(item) => (
|
{(item) => (
|
||||||
<div className="flex items-center justify-between">
|
<div className="flex items-start justify-between">
|
||||||
<div className="text-left">
|
<div className="text-left">
|
||||||
<div className="font-bold">{item.name}</div>
|
<div className="font-bold">{item.name}</div>
|
||||||
<div>{item.issuer}</div>
|
<div>{item.issuer}</div>
|
||||||
@ -343,7 +343,7 @@ const Publications = () => {
|
|||||||
return (
|
return (
|
||||||
<Section<Publication> section={section} urlKey="url" summaryKey="summary">
|
<Section<Publication> section={section} urlKey="url" summaryKey="summary">
|
||||||
{(item) => (
|
{(item) => (
|
||||||
<div className="flex items-center justify-between">
|
<div className="flex items-start justify-between">
|
||||||
<div className="text-left">
|
<div className="text-left">
|
||||||
<div className="font-bold">{item.name}</div>
|
<div className="font-bold">{item.name}</div>
|
||||||
<div>{item.publisher}</div>
|
<div>{item.publisher}</div>
|
||||||
@ -364,7 +364,7 @@ const Volunteer = () => {
|
|||||||
return (
|
return (
|
||||||
<Section<Volunteer> section={section} urlKey="url" summaryKey="summary">
|
<Section<Volunteer> section={section} urlKey="url" summaryKey="summary">
|
||||||
{(item) => (
|
{(item) => (
|
||||||
<div className="flex items-center justify-between">
|
<div className="flex items-start justify-between">
|
||||||
<div className="text-left">
|
<div className="text-left">
|
||||||
<div className="font-bold">{item.organization}</div>
|
<div className="font-bold">{item.organization}</div>
|
||||||
<div>{item.position}</div>
|
<div>{item.position}</div>
|
||||||
@ -401,7 +401,7 @@ const Projects = () => {
|
|||||||
return (
|
return (
|
||||||
<Section<Project> section={section} urlKey="url" summaryKey="summary" keywordsKey="keywords">
|
<Section<Project> section={section} urlKey="url" summaryKey="summary" keywordsKey="keywords">
|
||||||
{(item) => (
|
{(item) => (
|
||||||
<div className="flex items-center justify-between">
|
<div className="flex items-start justify-between">
|
||||||
<div className="text-left">
|
<div className="text-left">
|
||||||
<div className="font-bold">{item.name}</div>
|
<div className="font-bold">{item.name}</div>
|
||||||
<div>{item.description}</div>
|
<div>{item.description}</div>
|
||||||
@ -442,7 +442,7 @@ const Custom = ({ id }: { id: string }) => {
|
|||||||
keywordsKey="keywords"
|
keywordsKey="keywords"
|
||||||
>
|
>
|
||||||
{(item) => (
|
{(item) => (
|
||||||
<div className="flex items-center justify-between">
|
<div className="flex items-start justify-between">
|
||||||
<div className="text-left">
|
<div className="text-left">
|
||||||
<div className="font-bold">{item.name}</div>
|
<div className="font-bold">{item.name}</div>
|
||||||
<div>{item.description}</div>
|
<div>{item.description}</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user