-
Notifications
You must be signed in to change notification settings - Fork 191
feat: Clickable Profile card and Our Project redirection to main repo #131
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -60,7 +60,12 @@ const HeadingComponent: React.FC<HeadingComponentProps> = ({ | |||||||||||||||||||||||||||||||||
| className="flex items-center md:items-start md:justify-start gap-6 sm:gap-10 flex-col" | ||||||||||||||||||||||||||||||||||
| > | ||||||||||||||||||||||||||||||||||
| {/* tag */} | ||||||||||||||||||||||||||||||||||
| <div className="px-6 py-2 bg-gradient-to-r from-blue-500 to-purple-500 text-white rounded-full text-sm sm:text-base font-medium tracking-wide shadow-lg transform hover:scale-105 transition-transform duration-300"> | ||||||||||||||||||||||||||||||||||
| <div | ||||||||||||||||||||||||||||||||||
| className="cursor-pointer px-6 py-2 bg-gradient-to-r from-blue-500 to-purple-500 text-white rounded-full text-sm sm:text-base font-medium tracking-wide shadow-lg transform hover:scale-105 transition-transform duration-300" | ||||||||||||||||||||||||||||||||||
| onClick={() => | ||||||||||||||||||||||||||||||||||
| (window.location.href = "https://github.com/recodehive") | ||||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||||
| > | ||||||||||||||||||||||||||||||||||
| {tag} | ||||||||||||||||||||||||||||||||||
| </div> | ||||||||||||||||||||||||||||||||||
|
Comment on lines
+63
to
70
|
||||||||||||||||||||||||||||||||||
| <div | |
| className="cursor-pointer px-6 py-2 bg-gradient-to-r from-blue-500 to-purple-500 text-white rounded-full text-sm sm:text-base font-medium tracking-wide shadow-lg transform hover:scale-105 transition-transform duration-300" | |
| onClick={() => | |
| (window.location.href = "https://github.com/recodehive") | |
| } | |
| > | |
| {tag} | |
| </div> | |
| <a | |
| href="https://github.com/recodehive" | |
| target="_blank" | |
| rel="noopener noreferrer" | |
| className="cursor-pointer px-6 py-2 bg-gradient-to-r from-blue-500 to-purple-500 text-white rounded-full text-sm sm:text-base font-medium tracking-wide shadow-lg transform hover:scale-105 transition-transform duration-300" | |
| > | |
| {tag} | |
| </a> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -58,11 +58,14 @@ export default function Home(): ReactNode { | |
| <div className="m-4"> | ||
| <BlogCarousel /> | ||
| </div> | ||
| <div className="m-4"> | ||
| <div | ||
| className="m-4" | ||
| onClick={() => (window.location.href = "https://www.sanjaykv.com/")} | ||
| > | ||
| <img | ||
| src="/selfhero.png" | ||
| alt="recodehive" | ||
| className="w-full h-full object-cover rounded-2xl" | ||
| className="w-full h-full object-cover rounded-2xl cursor-pointer" | ||
| /> | ||
| </div> | ||
|
harish599 marked this conversation as resolved.
Comment on lines
+61
to
70
|
||
| <div className="m-4"> | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wrapping the tag in a clickable