@@ -4,6 +4,7 @@ import Image from 'next/image'
44import { StarFilled } from '@ant-design/icons'
55import { useEffect , useState } from 'react'
66import Coffee from '../buttons/Coffee'
7+ import Sponsor from '../buttons/Sponsor'
78
89const Footer = ( ) => {
910 const [ starCount , setStarCount ] = useState < number | null > ( null )
@@ -46,7 +47,7 @@ const Footer = () => {
4647 href = 'https://github.com/fork-commit-merge/fork-commit-merge'
4748 target = '_blank'
4849 rel = 'noopener noreferrer'
49- className = 'hover: text-modern-purple text-gray-400 '
50+ className = 'text-gray-400 hover: text-modern-purple '
5051 aria-label = 'GitHub'
5152 >
5253 < svg
@@ -62,6 +63,7 @@ const Footer = () => {
6263 </ svg >
6364 </ a >
6465 < Coffee />
66+ < Sponsor />
6567 </ div >
6668 </ div >
6769
@@ -73,7 +75,7 @@ const Footer = () => {
7375 href = 'https://nextjs.org/'
7476 target = '_blank'
7577 rel = 'noopener noreferrer'
76- className = 'hover: text-modern-purple text- sm text-gray-600'
78+ className = 'text-sm text-gray-600 hover:text-modern-purple '
7779 >
7880 Next.js
7981 </ a >
@@ -83,7 +85,7 @@ const Footer = () => {
8385 href = 'https://vercel.com/'
8486 target = '_blank'
8587 rel = 'noopener noreferrer'
86- className = 'hover: text-modern-purple text- sm text-gray-600'
88+ className = 'text-sm text-gray-600 hover:text-modern-purple '
8789 >
8890 Vercel
8991 </ a >
@@ -93,7 +95,7 @@ const Footer = () => {
9395 href = 'https://mongodb.com/'
9496 target = '_blank'
9597 rel = 'noopener noreferrer'
96- className = 'hover: text-modern-purple text- sm text-gray-600'
98+ className = 'text-sm text-gray-600 hover:text-modern-purple '
9799 >
98100 MongoDB
99101 </ a >
@@ -103,7 +105,7 @@ const Footer = () => {
103105 href = 'https://github.com/fork-commit-merge/fork-commit-merge'
104106 target = '_blank'
105107 rel = 'noopener noreferrer'
106- className = 'hover:text-modern-purple group flex items-center text-sm text-gray-600'
108+ className = 'group flex items-center text-sm text-gray-600 hover:text-modern-purple '
107109 >
108110 < span > GitHub Stars</ span >
109111 { starCount !== null ? (
@@ -126,15 +128,15 @@ const Footer = () => {
126128 href = 'https://github.com/fork-commit-merge/fork-commit-merge/blob/main/CONTRIBUTING.md'
127129 target = '_blank'
128130 rel = 'noopener noreferrer'
129- className = 'hover: text-modern-purple text- sm text-gray-600'
131+ className = 'text-sm text-gray-600 hover:text-modern-purple '
130132 >
131133 Contributing
132134 </ Link >
133135 </ li >
134136 < li >
135137 < Link
136138 href = '/privacy-policy'
137- className = 'hover: text-modern-purple text- sm text-gray-600'
139+ className = 'text-sm text-gray-600 hover:text-modern-purple '
138140 >
139141 Privacy Policy
140142 </ Link >
@@ -144,7 +146,7 @@ const Footer = () => {
144146 href = 'https://github.com/nikohoffren'
145147 target = '_blank'
146148 rel = 'noopener noreferrer'
147- className = 'hover: text-modern-purple text- sm text-gray-600'
149+ className = 'text-sm text-gray-600 hover:text-modern-purple '
148150 >
149151 Contact
150152 </ Link >
@@ -154,7 +156,7 @@ const Footer = () => {
154156 href = 'https://github.com/fork-commit-merge/fork-commit-merge/blob/main/CODE_OF_CONDUCT.md'
155157 target = '_blank'
156158 rel = 'noopener noreferrer'
157- className = 'hover: text-modern-purple text- sm text-gray-600'
159+ className = 'text-sm text-gray-600 hover:text-modern-purple '
158160 >
159161 Code of Conduct
160162 </ Link >
@@ -168,23 +170,23 @@ const Footer = () => {
168170 < li >
169171 < Link
170172 href = '/faq'
171- className = 'hover: text-modern-purple text- sm text-gray-600'
173+ className = 'text-sm text-gray-600 hover:text-modern-purple '
172174 >
173175 FAQ
174176 </ Link >
175177 </ li >
176178 < li >
177179 < Link
178180 href = '/resources'
179- className = 'hover: text-modern-purple text- sm text-gray-600'
181+ className = 'text-sm text-gray-600 hover:text-modern-purple '
180182 >
181183 Resources
182184 </ Link >
183185 </ li >
184186 < li >
185187 < Link
186188 href = '/ai'
187- className = 'hover: text-modern-purple text- sm text-gray-600'
189+ className = 'text-sm text-gray-600 hover:text-modern-purple '
188190 >
189191 AI Tools
190192 </ Link >
@@ -194,7 +196,7 @@ const Footer = () => {
194196 href = 'https://opensource.org/'
195197 target = '_blank'
196198 rel = 'noopener noreferrer'
197- className = 'hover: text-modern-purple text- sm text-gray-600'
199+ className = 'text-sm text-gray-600 hover:text-modern-purple '
198200 >
199201 opensource.org
200202 </ Link >
0 commit comments