-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3591a49
commit 087c246
Showing
4 changed files
with
11 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import React from 'react'; | ||
import { Github } from 'lucide-react'; | ||
|
||
import Link from 'next/link'; | ||
const Footer = () => { | ||
const handleFeedbackClick = () => { | ||
window.location.href = 'mailto:[email protected]?subject=Feedback'; | ||
|
@@ -11,14 +11,14 @@ const Footer = () => { | |
<div className="container mx-auto max-w-6xl flex flex-col md:flex-row justify-between items-center"> | ||
<p className="text-center md:text-left mb-4 md:mb-0 text-gray-900 dark:text-gray-100">© {new Date().getFullYear()} All rights reserved.</p> | ||
<div className="flex items-center space-x-4"> | ||
<a | ||
<Link | ||
href="https://github.com/Dheerajjha451/Design2Code" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
className="text-black dark:text-white hover:text-bold" | ||
> | ||
<Github size={30} /> | ||
</a> | ||
</Link> | ||
<p | ||
className="text-blue-400 dark:text-blue-300 hover:text-blue-500 cursor-pointer" | ||
onClick={handleFeedbackClick} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -143,6 +143,7 @@ | |
color: #ffffff !important; | ||
} | ||
|
||
|
||
@layer base { | ||
* { | ||
@apply border-border; | ||
|