diff --git a/src/components/avatar-card/index.jsx b/src/components/avatar-card/index.jsx index 8e8350b..5b201b9 100644 --- a/src/components/avatar-card/index.jsx +++ b/src/components/avatar-card/index.jsx @@ -38,7 +38,9 @@ const AvatarCard = ({ profile, loading }) => { {loading || !profile ? ( skeleton({ width: 'w-48', height: 'h-8' }) ) : ( - {profile.name} + + {profile.name} + )}
+
{formatDistance(article.publishedAt, new Date(), { addSuffix: true, })} @@ -150,7 +150,7 @@ const Blog = ({ loading, blog, googleAnalytics }) => {
No recent post
++ No recent post +
@@ -137,7 +139,9 @@ const Project = ({ repo, loading, github, googleAnalytics }) => {
{loading ? (
skeleton({ width: 'w-28', height: 'h-8' })
) : (
- My Projects
+
+ My Projects
+
)}
{loading ? (
@@ -147,7 +151,7 @@ const Project = ({ repo, loading, github, googleAnalytics }) => {
href={`https://github.com/${github.username}?tab=repositories`}
target="_blank"
rel="noreferrer"
- className="opacity-50"
+ className="text-base-content opacity-50"
>
See All
diff --git a/src/components/skill/index.jsx b/src/components/skill/index.jsx
index 7a85a4f..14dcc1e 100644
--- a/src/components/skill/index.jsx
+++ b/src/components/skill/index.jsx
@@ -25,7 +25,9 @@ const Skill = ({ loading, skills }) => {
{loading ? (
skeleton({ width: 'w-32', height: 'h-8' })
) : (
- Tech Stack
+
+ Tech Stack
+
)}
diff --git a/src/components/theme-changer/index.jsx b/src/components/theme-changer/index.jsx
index af92dcd..d4fb7f5 100644
--- a/src/components/theme-changer/index.jsx
+++ b/src/components/theme-changer/index.jsx
@@ -21,7 +21,7 @@ const ThemeChanger = ({ theme, setTheme, loading, themeConfig }) => {
{loading ? (
skeleton({ width: 'w-20', height: 'h-8', className: 'mb-1' })
) : (
- Theme
+ Theme
)}
@@ -43,7 +43,7 @@ const ThemeChanger = ({ theme, setTheme, loading, themeConfig }) => {