import React from "react"; import * as styles from "./Author.module.scss"; import { useSiteMetadata } from "@/hooks"; const Author = () => { const { author } = useSiteMetadata(); return (

Written by:{" "} {author.name} {typeof window !== "undefined" ? ( // eslint-disable-next-line no-undef {window ? `@ ${window.location}` : ""} ) : ( "" )}

); }; export default Author;