-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style: change background, change word space and change font-size of l…
…i… (#22)
- Loading branch information
Showing
10 changed files
with
43 additions
and
118 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
|
@@ -2,6 +2,7 @@ import { Logo, MessageIcon } from "assets/icons"; | |
import SocialMediaLinks from "components/SocialLinks"; | ||
|
||
export function Footer() { | ||
const year = new Date().getFullYear(); | ||
return ( | ||
<footer className="container py-[56px] border-t space-y-10"> | ||
<section className="flex flex-col lg:flex-row lg:justify-between items-center gap-y-12 "> | ||
|
@@ -20,9 +21,8 @@ export function Footer() { | |
<MessageIcon /> | ||
<a href="mailto:[email protected]">[email protected]</a> | ||
</div> | ||
<span>© 2024 Dezh.tech, All Rights Reserved</span> | ||
<span>© {year} Dezh.tech, All Rights Reserved</span> | ||
</section> | ||
</footer> | ||
); | ||
|
||
} |
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 |
---|---|---|
|
@@ -13,11 +13,13 @@ export function Header() { | |
<ul className="list-disc gap-9 md:flex hidden"> | ||
{links.map((link, key) => ( | ||
<li key={key}> | ||
<Link href={link.link}>{link.name}</Link> | ||
<Link className="text-xl" href={link.link}> | ||
{link.name} | ||
</Link> | ||
</li> | ||
))} | ||
</ul> | ||
<Link variant="primary" href="#contact"> | ||
<Link className="text-xl" variant="primary" href="mailto:[email protected]"> | ||
Contact us | ||
</Link> | ||
</nav> | ||
|
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