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:
@@ -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;
|
||||
Reference in New Issue
Block a user