Skip to content

Commit a1de3c2

Browse files
committed
Update footer
1 parent 5ab7f2f commit a1de3c2

File tree

1 file changed

+16
-6
lines changed

1 file changed

+16
-6
lines changed

src/components/layout/footer.tsx

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ const Footer = () => {
7474
<p className="text-sm sm:text-base md:text-lg text-gray-600 dark:text-gray-300">
7575
Have a suggestion?{' '}
7676
<a
77-
href="https://github.com/coder-ralph/RepoTree"
77+
href="https://github.com/coder-ralph/RepoTree/issues"
7878
target="_blank"
7979
rel="noopener noreferrer"
8080
className="text-blue-700 hover:text-blue-500 transition-colors"
@@ -120,17 +120,27 @@ const Footer = () => {
120120
<p>
121121
&copy; {new Date().getFullYear()} RepoTree. All rights reserved.
122122
</p>
123-
<p className="mt-2">
124-
Made with ☕ by{' '}
123+
<div className="mt-2 flex items-center justify-center">
125124
<a
126125
href="https://app.daily.dev/coderralph"
127126
target="_blank"
128127
rel="noopener noreferrer"
129-
className="text-blue-700 hover:underline hover:underline-offset-4 transition-all"
128+
title="coderralph"
129+
className="group flex items-center space-x-2 transition-colors hover:text-black dark:hover:text-white"
130130
>
131-
Ralph Rosael
131+
<span className="text-gray-600 dark:text-gray-300">Made with ☕ by</span>
132+
<Image
133+
className="group-hover:ring-blue-500 h-6 w-6 rounded-full transition-shadow group-hover:ring-2"
134+
src="/images/avatar.png"
135+
alt="Ralph Rosael"
136+
width={24}
137+
height={24}
138+
/>
139+
<span className="group-hover:decoration-blue-500 underline decoration-gray-500 dark:decoration-gray-400 decoration-wavy underline-offset-[4px]">
140+
Ralph Rosael
141+
</span>
132142
</a>
133-
</p>
143+
</div>
134144
</div>
135145
</div>
136146
</footer>

0 commit comments

Comments
 (0)