@@ -22,7 +22,7 @@ export default async function BlogPage({
2222 < main className = "container max-w-5xl mx-auto px-4 py-16" >
2323 < div className = "mb-12" >
2424 < h1 className = "text-4xl font-bold mb-4" > Blog</ h1 >
25- < p className = "text-lg text-fd-muted- foreground" >
25+ < p className = "text-lg text-fd-foreground/80 " >
2626 Insights, updates, and best practices from the ObjectStack team.
2727 </ p >
2828 </ div >
@@ -39,13 +39,13 @@ export default async function BlogPage({
3939 { post . data . title }
4040 </ h2 >
4141 { post . data . description && (
42- < p className = "text-fd-muted- foreground" >
42+ < p className = "text-fd-foreground/70 " >
4343 { post . data . description }
4444 </ p >
4545 ) }
4646 </ div >
4747
48- < div className = "flex items-center gap-4 text-sm text-fd-muted- foreground" >
48+ < div className = "flex items-center gap-4 text-sm text-fd-foreground/70 " >
4949 { post . data . date && (
5050 < time dateTime = { post . data . date } >
5151 { new Date ( post . data . date ) . toLocaleDateString ( 'en-US' , {
@@ -78,7 +78,7 @@ export default async function BlogPage({
7878
7979 { posts . length === 0 && (
8080 < div className = "text-center py-12" >
81- < p className = "text-fd-muted- foreground" > No blog posts yet. Check back soon!</ p >
81+ < p className = "text-fd-foreground/70 " > No blog posts yet. Check back soon!</ p >
8282 </ div >
8383 ) }
8484 </ main >
@@ -100,7 +100,7 @@ export default async function BlogPage({
100100 < main className = "container max-w-4xl mx-auto px-4 py-16" >
101101 < Link
102102 href = "/blog"
103- className = "inline-flex items-center gap-2 text-sm text-fd-muted- foreground hover:text-fd-foreground mb-8 transition-colors"
103+ className = "inline-flex items-center gap-2 text-sm text-fd-foreground/70 hover:text-fd-foreground mb-8 transition-colors"
104104 >
105105 < ArrowLeft className = "w-4 h-4" />
106106 Back to Blog
@@ -111,12 +111,12 @@ export default async function BlogPage({
111111 < h1 className = "text-4xl font-bold mb-4" > { page . data . title } </ h1 >
112112
113113 { page . data . description && (
114- < p className = "text-xl text-fd-muted- foreground mb-6" >
114+ < p className = "text-xl text-fd-foreground/80 mb-6" >
115115 { page . data . description }
116116 </ p >
117117 ) }
118118
119- < div className = "flex items-center gap-4 text-sm text-fd-muted- foreground" >
119+ < div className = "flex items-center gap-4 text-sm text-fd-foreground/70 " >
120120 { page . data . date && (
121121 < time dateTime = { page . data . date } >
122122 { new Date ( page . data . date ) . toLocaleDateString ( 'en-US' , {
0 commit comments