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

Written by:{" "} {author.name} {typeof window !== "undefined" ? ( {window ? `@ ${window.location}` : ""} ) : ( "" )}

); }; export default Author;