@@ -10,8 +10,8 @@ export default function Home({ posts }) {
1010 return (
1111 < >
1212 < div className = "divide-y divide-gray-200 dark:divide-gray-700" >
13- < div className = "space-y-2 pb-8 pt-6 md:space-y-5" >
14- < h1 className = "text-3xl font-extrabold leading-9 tracking-tight text-gray-900 dark:text-gray-100 sm:text-4xl sm:leading-10 md:text-6xl md:leading-14" >
13+ < div className = "space-y-2 pt-6 pb-8 md:space-y-5" >
14+ < h1 className = "text-3xl leading-9 font-extrabold tracking-tight text-gray-900 sm:text-4xl sm:leading-10 md:text-6xl md:leading-14 dark:text-gray-100 " >
1515 Latest
1616 </ h1 >
1717 < p className = "text-lg leading-7 text-gray-500 dark:text-gray-400" >
@@ -28,14 +28,14 @@ export default function Home({ posts }) {
2828 < div className = "space-y-2 xl:grid xl:grid-cols-4 xl:items-baseline xl:space-y-0" >
2929 < dl >
3030 < dt className = "sr-only" > Published on</ dt >
31- < dd className = "text-base font-medium leading-6 text-gray-500 dark:text-gray-400" >
31+ < dd className = "text-base leading-6 font-medium text-gray-500 dark:text-gray-400" >
3232 < time dateTime = { date } > { formatDate ( date , siteMetadata . locale ) } </ time >
3333 </ dd >
3434 </ dl >
3535 < div className = "space-y-5 xl:col-span-3" >
3636 < div className = "space-y-6" >
3737 < div >
38- < h2 className = "text-2xl font-bold leading-8 tracking-tight" >
38+ < h2 className = "text-2xl leading-8 font-bold tracking-tight" >
3939 < Link
4040 href = { `/blog/${ slug } ` }
4141 className = "text-gray-900 dark:text-gray-100"
@@ -53,7 +53,7 @@ export default function Home({ posts }) {
5353 { summary }
5454 </ div >
5555 </ div >
56- < div className = "text-base font-medium leading-6" >
56+ < div className = "text-base leading-6 font-medium " >
5757 < Link
5858 href = { `/blog/${ slug } ` }
5959 className = "text-primary-500 hover:text-primary-600 dark:hover:text-primary-400"
@@ -71,7 +71,7 @@ export default function Home({ posts }) {
7171 </ ul >
7272 </ div >
7373 { posts . length > MAX_DISPLAY && (
74- < div className = "flex justify-end text-base font-medium leading-6" >
74+ < div className = "flex justify-end text-base leading-6 font-medium " >
7575 < Link
7676 href = "/blog"
7777 className = "text-primary-500 hover:text-primary-600 dark:hover:text-primary-400"
0 commit comments