mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-12-12 13:17:16 +01:00
added legal pages, resized tablet view, fixed prettier
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
import React from "react";
|
||||
|
||||
import * as styles from "./Author.module.scss";
|
||||
import { useSiteMetadata } from "@/hooks";
|
||||
|
||||
import * as styles from "./Author.module.scss";
|
||||
|
||||
const Author = () => {
|
||||
const { author } = useSiteMetadata();
|
||||
@@ -10,7 +10,7 @@ const Author = () => {
|
||||
return (
|
||||
<div className={styles.author}>
|
||||
<p className={styles.bio}>
|
||||
Written by: <a href ="/pages/about">
|
||||
Written by: <a href="/pages/about">
|
||||
<strong>{author.name}</strong>
|
||||
</a>
|
||||
</p>
|
||||
|
||||
@@ -2,7 +2,6 @@ import React from "react";
|
||||
|
||||
import { Link } from "gatsby";
|
||||
|
||||
import type { Node } from "@/types";
|
||||
|
||||
import { Author } from "./Author";
|
||||
import { Comments } from "./Comments";
|
||||
@@ -11,6 +10,7 @@ import { Meta } from "./Meta";
|
||||
import { Tags } from "./Tags";
|
||||
|
||||
import * as styles from "./Post.module.scss";
|
||||
import type { Node } from "@/types";
|
||||
|
||||
interface Props {
|
||||
post: Node;
|
||||
|
||||
Reference in New Issue
Block a user