diff --git a/src/components/Home/Intro.tsx b/src/components/Home/Intro.tsx index 2326c8bc2..86b9bd703 100644 --- a/src/components/Home/Intro.tsx +++ b/src/components/Home/Intro.tsx @@ -33,13 +33,13 @@ function TableRow({ href, title, subtitle, date }: TableRowProps) { target="_blank" rel="noopener noreferrer" href={href} - className="flex items-center space-x-3 group lg:text-base text-xs" + className="flex items-center space-x-4 group" > - + {title} - - {subtitle && {subtitle}} + + {subtitle && {subtitle}} {date && ( {date} )} @@ -50,7 +50,7 @@ function TableRow({ href, title, subtitle, date }: TableRowProps) { function SectionContainer(props) { return (
)