Skip to content

Commit 5c46f26

Browse files
feat: Update footer based on feedback
Updated the footer in `src/templates/layout.tsx`: - Made the project name "workers-research" a hyperlink to the GitHub repository. - Adjusted the GitHub icon size to be slightly smaller (w-4 h-4).
1 parent 1ab6552 commit 5c46f26

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

src/templates/layout.tsx

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,14 @@ export const Layout: FC = (props) => {
104104
<div class="flex-grow">{props.children}</div>
105105
<footer class="bg-gray-100 border-t border-gray-200 py-4 text-center text-sm text-gray-600">
106106
<div class="max-w-6xl mx-auto px-4 flex items-center justify-center">
107-
<span>workers-research</span>
107+
<a
108+
href="https://github.com/G4brym/workers-research"
109+
target="_blank"
110+
rel="noopener noreferrer"
111+
class="hover:text-gray-900 hover:underline"
112+
>
113+
workers-research
114+
</a>
108115
<a
109116
href="https://github.com/G4brym/workers-research"
110117
target="_blank"
@@ -113,7 +120,7 @@ export const Layout: FC = (props) => {
113120
aria-label="GitHub Repository"
114121
>
115122
<svg
116-
class="w-5 h-5 inline-block"
123+
class="w-4 h-4 inline-block"
117124
fill="currentColor"
118125
viewBox="0 0 20 20"
119126
aria-hidden="true"

0 commit comments

Comments
 (0)