@@ -28,6 +28,7 @@ const COLLABORATORS = [
2828 { name : "Ethereum Foundation" , href : "https://ethereum.foundation" , logo : "/logos/ef.png" } ,
2929 { name : "Arbitrum" , href : "https://arbitrum.foundation/" , logo : "/logos/arbitrum.svg" } ,
3030 { name : "ENS" , href : "https://ens.domains" , logo : "/logos/ens.png" } ,
31+ { name : "Optimism" , href : "https://optimism.io" , logo : "/logos/op-logo.svg" } ,
3132] ;
3233
3334const Home : NextPage = ( ) => {
@@ -63,14 +64,14 @@ const Home: NextPage = () => {
6364
6465 { /* Latest Posts — inline on mobile, hidden on desktop (shown in sidebar) */ }
6566 < div className = "mb-10 order-3 lg:hidden border-l border-primary/30 pl-4" >
66- < h2 className = "text-sm uppercase tracking-widest text-primary/70 font-semibold mb-3" > Latest Posts</ h2 >
67+ < h2 className = "text-sm uppercase tracking-widest text-primary font-semibold mb-3" > Latest Posts</ h2 >
6768 < div className = "space-y-3" >
6869 { BLOG_POSTS . map ( ( post , i ) => (
6970 < a key = { i } href = { post . url } className = "block group" >
70- < span className = "block text-sm text-base-content/80 group-hover:text-primary transition-colors leading-snug" >
71+ < span className = "block text-sm text-base-content group-hover:text-primary transition-colors leading-snug" >
7172 { post . title }
7273 </ span >
73- < span className = "flex flex-wrap items-center gap-1.5 mt-1 text-xs text-base-content/40 " >
74+ < span className = "flex flex-wrap items-center gap-1.5 mt-1 text-xs text-base-content/70 " >
7475 < span > { post . date } </ span >
7576 </ span >
7677 </ a >
@@ -79,7 +80,7 @@ const Home: NextPage = () => {
7980 </ div >
8081
8182 < div className = "mb-10 order-4" >
82- < h2 className = "text-2xl font-bold mb-4" > Featured Projects</ h2 >
83+ < h2 className = "text-lg lg:text- 2xl font-bold mb-4 text-base-content/80 " > Featured Projects</ h2 >
8384 < div className = "space-y-4" >
8485 { FEATURED_PROJECTS . map ( project => (
8586 < div key = { project . name } >
@@ -101,7 +102,7 @@ const Home: NextPage = () => {
101102 </ div >
102103
103104 < div className = "mb-10 order-5" >
104- < h2 className = "text-2xl font-bold mb-4" > Collaborators</ h2 >
105+ < h2 className = "text-lg lg:text- 2xl font-bold mb-4 text-base-content/80 " > Collaborators</ h2 >
105106 < div className = "flex flex-wrap items-center gap-6" >
106107 { COLLABORATORS . map ( client => (
107108 < a
@@ -121,14 +122,14 @@ const Home: NextPage = () => {
121122 { /* Sidebar — desktop only */ }
122123 < aside className = "hidden lg:block lg:w-56 lg:pt-20 shrink-0" >
123124 < div className = "lg:sticky lg:top-8 border-l border-primary/30 pl-4" >
124- < h2 className = "text-sm uppercase tracking-widest text-primary/70 font-semibold mb-3" > Latest Posts</ h2 >
125+ < h2 className = "text-sm uppercase tracking-widest text-primary font-semibold mb-3" > Latest Posts</ h2 >
125126 < div className = "space-y-3" >
126127 { BLOG_POSTS . map ( ( post , i ) => (
127128 < a key = { i } href = { post . url } className = "block group" >
128- < span className = "block text-sm text-base-content/80 group-hover:text-primary transition-colors leading-snug" >
129+ < span className = "block text-sm text-base-content group-hover:text-primary transition-colors leading-snug" >
129130 { post . title }
130131 </ span >
131- < span className = "flex flex-wrap items-center gap-1.5 mt-1 text-xs text-base-content/40 " >
132+ < span className = "flex flex-wrap items-center gap-1.5 mt-1 text-xs text-base-content/70 " >
132133 < span > { post . date } </ span >
133134 </ span >
134135 </ a >
0 commit comments