1
0
mirror of https://github.com/XFox111/my-website.git synced 2026-04-22 07:28:01 +03:00

init: First version

This commit is contained in:
2024-08-19 23:08:50 +00:00
commit 3ec7d9a722
134 changed files with 17088 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
import Link from "next/link";
import Image from "next/image";
import React from "react";
import logo from "@/icon.svg";
import cls from "./TitleLogo.module.scss";
const TitleLogo: React.FC = () => (
<Link className={ cls.title } href="/">
<Image src={ logo }
alt="A fox jumping down, and a diagonal stripe in the background, forming letters X and F"
aria-hidden
priority />
<p>
<span>xfox111</span>
<sub>.net</sub>
</p>
</Link>
);
export default TitleLogo;