From 3a2f1ea3189e22f44f94608eb2d97b06509596eb Mon Sep 17 00:00:00 2001 From: jakubmanczak Date: Fri, 6 May 2022 18:52:27 +0200 Subject: [PATCH] provisional favicon & website title --- pages/_app.js | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/pages/_app.js b/pages/_app.js index 6257ada..0e1e4f6 100644 --- a/pages/_app.js +++ b/pages/_app.js @@ -1,7 +1,16 @@ +import Head from "next/head"; import "../styles/globals.scss"; function MyApp({ Component, pageProps }) { - return ; + return ( + <> + + + Gractwo + + + + ); } export default MyApp;