feat: add posts + a lot of changes
This commit is contained in:
@@ -1,10 +1,9 @@
|
||||
import Link from "next/link";
|
||||
import {
|
||||
FaMastodon,
|
||||
FaGithub,
|
||||
FaSteam,
|
||||
FaProjectDiagram
|
||||
import {
|
||||
FaMastodon,
|
||||
FaSteam
|
||||
} from "react-icons/fa";
|
||||
import { SiGitea } from "react-icons/si";
|
||||
|
||||
export default function MainFooter() {
|
||||
return (
|
||||
@@ -13,16 +12,16 @@ export default function MainFooter() {
|
||||
<div className="m-4">
|
||||
<h3 className="text-xl mb-3">Socials</h3>
|
||||
<div className="flex items-center gap-4">
|
||||
<Link href="https://mastodon.social/@aderkonstantin"
|
||||
className="text-gray-800 dark:text-gray-200 hover:text-primary-500 dark:hover:text-primary-400 transition-colors">
|
||||
<Link href="https://mastodon.social/@aderkonstantin"
|
||||
className="text-gray-800 dark:text-gray-200 hover:text-primary-500 dark:hover:text-primary-400 transition-colors">
|
||||
<FaMastodon size={32} />
|
||||
</Link>
|
||||
<Link href="https://github.com/AderKonstantin"
|
||||
className="text-gray-800 dark:text-gray-200 hover:text-primary-500 dark:hover:text-primary-400 transition-colors">
|
||||
<FaGithub size={32} />
|
||||
<Link href="https://code.bimka.space/AderKonstantin"
|
||||
className="text-gray-800 dark:text-gray-200 hover:text-primary-500 dark:hover:text-primary-400 transition-colors">
|
||||
<SiGitea size={32} />
|
||||
</Link>
|
||||
<Link href="https://steamcommunity.com/yourprofile"
|
||||
className="text-gray-800 dark:text-gray-200 hover:text-primary-500 dark:hover:text-primary-400 transition-colors">
|
||||
<Link href="https://steamcommunity.com/id/aderkonstantin/"
|
||||
className="text-gray-800 dark:text-gray-200 hover:text-primary-500 dark:hover:text-primary-400 transition-colors">
|
||||
<FaSteam size={32} />
|
||||
</Link>
|
||||
</div>
|
||||
@@ -30,13 +29,10 @@ export default function MainFooter() {
|
||||
<div className="m-4">
|
||||
<div className="flex items-center gap-2 mb-3">
|
||||
<h3 className="text-xl inline">Other Projects</h3>
|
||||
<span className="text-gray-800 dark:text-gray-200">
|
||||
<FaProjectDiagram size={24} />
|
||||
</span>
|
||||
</div>
|
||||
<div className="text-lg">
|
||||
<Link href="sihirtia.ru"
|
||||
className="text-primary-500 hover:text-primary-600 dark:hover:text-primary-400 transition-colors">
|
||||
<Link href="https://sihirtia.ru/"
|
||||
className="text-primary-500 hover:text-primary-600 dark:hover:text-primary-400 transition-colors">
|
||||
Sihirtia Softworks
|
||||
</Link>
|
||||
</div>
|
||||
|
||||
@@ -1,8 +1,7 @@
|
||||
import searchPic from "@/public/search.svg";
|
||||
|
||||
import Image from "next/image";
|
||||
import Link from "next/link";
|
||||
import Toolbar from "./toolbar";
|
||||
import { IoSearch } from "react-icons/io5";
|
||||
|
||||
import AnimatedLink from "../animatedLink";
|
||||
|
||||
@@ -19,7 +18,7 @@ export default function MainHeader() {
|
||||
|
||||
<li className="text-6xl flex items-center justify-center filter brightness-0 dark:invert">
|
||||
<Link href="#">
|
||||
<Image src={searchPic} alt="search" width={28} height={28} />
|
||||
<IoSearch size={32} />
|
||||
</Link>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
Reference in New Issue
Block a user