Blog styles in module
This commit is contained in:
@ -2,6 +2,8 @@ import type { NextPage } from "next";
|
||||
import Head from "next/head";
|
||||
import Navigation from "./Navigation";
|
||||
|
||||
import styles from "../../styles/Blog/Blog.module.scss";
|
||||
|
||||
interface ILayoutProps {
|
||||
title?: string;
|
||||
}
|
||||
@ -11,7 +13,7 @@ const Layout: NextPage<ILayoutProps> = ({ title, children }) => {
|
||||
<Head>
|
||||
<title>{title ?? "c0ntroller.de"}</title>
|
||||
</Head>
|
||||
<div id={"blogBody"}>
|
||||
<div id={styles.blogBody}>
|
||||
<header>
|
||||
<Navigation />
|
||||
</header>
|
||||
|
Reference in New Issue
Block a user