Skip to content

Commit

Permalink
added github link to footer and some small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Andcool-Systems committed Jul 27, 2024
1 parent a55a3b5 commit 345b785
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 2 additions & 1 deletion src/app/modules/footer.module.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ const Footer = () => {
<Link href="/contacts">Контакты</Link>

<Link href="/tutorials">Туториалы</Link>
<Link href="https://www.donationalerts.com/r/andcool_systems">Поддержать</Link>
<Link href="https://www.donationalerts.com/r/andcool_systems" target="_blank">Поддержать</Link>
<Link href="https://github.com/Andcool-Systems/pplbandage_site" target="_blank">GitHub</Link>
</div>
</div>
<p className={style.beta}>PPLBandage project 2023–{new Date().getFullYear()}, <img src="/static/icons/beta.svg" alt="" />–version</p>
Expand Down
2 changes: 1 addition & 1 deletion src/app/modules/header.module.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const Header = (): JSX.Element => {
<div style={{ display: "flex", alignItems: "center", flexWrap: "nowrap" }}>
<div className={`${Styles.avatar_container} ${!islogged && Styles.placeholders} ${data?.has_unreaded_notifications && Styles.unreaded}`} onClick={() => setExpanded(!expanded)}>
{data && <Image className={Styles.avatar}
src={(data?.avatar || "") + '?size=80'}
src={data?.avatar && data?.avatar + '?size=80'}
alt="avatar"
width={80}
height={80}
Expand Down
2 changes: 0 additions & 2 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
"use client";

import React from "react";
import Header from "./modules/header.module";
import Style from "./styles/root/page.module.css";
Expand Down

0 comments on commit 345b785

Please sign in to comment.