This repository was archived by the owner on Aug 22, 2024. It is now read-only.
File tree 5 files changed +17
-8
lines changed
5 files changed +17
-8
lines changed Original file line number Diff line number Diff line change @@ -26,4 +26,4 @@ Tailwind and Emotion are available for styling using utility classes and css-in-
26
26
27
27
Testing is facilitated through React Testing Library and Jest.
28
28
29
- ` next-seo ` and ` next-sitemap ` are doing their jobs very well. Be sure to update ` /next-sitemap.js ` and ` /next-seo.js ` with your information!
29
+ ` next-seo ` and ` next-sitemap ` are doing their jobs very well. Be sure to update ` /next-sitemap.js ` and ` /next-seo.json ` with your information!
Original file line number Diff line number Diff line change 2
2
"title" : " Next.js and MDX fueled" ,
3
3
"titleTemplate" : " %s | Joel" ,
4
4
"description" : " THis is my Next.js TypeScript Tailwind Site" ,
5
+ "favicon" : " /favicon.ico" ,
5
6
"additionalMetaTags" : [
6
7
{"property" : " author" , "content" : " joel hooks" },
7
8
{
Original file line number Diff line number Diff line change 21
21
"mdx-prism" : " ^0.3.1" ,
22
22
"next" : " 10.0.1" ,
23
23
"next-mdx-enhanced" : " ^4.0.0" ,
24
- "next-seo" : " ^4.15.1 " ,
24
+ "next-seo" : " ^4.17.0 " ,
25
25
"next-sitemap" : " ^1.2.26" ,
26
26
"prettier" : " ^2.1.2" ,
27
27
"react" : " 17.0.1" ,
32
32
"remark-slug" : " ^6.0.0"
33
33
},
34
34
"devDependencies" : {
35
- "@emotion/babel-preset-css-prop" : " ^10.2.1" ,
36
35
"@babel/plugin-transform-react-jsx" : " ^7.12.5" ,
36
+ "@emotion/babel-preset-css-prop" : " ^10.2.1" ,
37
37
"@tailwindcss/typography" : " ^0.2.0" ,
38
38
"@testing-library/jest-dom" : " ^5.11.5" ,
39
39
"@testing-library/react" : " ^11.1.1" ,
Original file line number Diff line number Diff line change
1
+ import React from 'react'
1
2
import { AppProps } from 'next/app'
2
3
import '../styles/globals.css'
4
+ import { DefaultSeo } from 'next-seo'
5
+ import SEO from '../../next-seo.json'
3
6
4
7
function MyApp ( { Component, pageProps} : AppProps ) {
5
- return < Component { ...pageProps } />
8
+ return (
9
+ < >
10
+ < DefaultSeo { ...SEO } />
11
+ < Component { ...pageProps } />
12
+ </ >
13
+ )
6
14
}
7
15
8
16
export default MyApp
Original file line number Diff line number Diff line change @@ -6295,10 +6295,10 @@ next-mdx-enhanced@^4.0.0:
6295
6295
prebuild-webpack-plugin "1.1.1"
6296
6296
stringify-object "^3.3.0"
6297
6297
6298
- next-seo@^4.15.1 :
6299
- version "4.15.1 "
6300
- resolved "https://registry.yarnpkg.com/next-seo/-/next-seo-4.15.1 .tgz#d1cb51615739690040110b581bfb51d979307a1f "
6301
- integrity sha512-jRYUOKbSFirwNRTaYFThu0BLBA1oWJIUq076QQ8uXBP6GG6Eh2/aPcXDoeOt33S1qghTJ60MwW1BkCbN889MIg ==
6298
+ next-seo@^4.17.0 :
6299
+ version "4.17.0 "
6300
+ resolved "https://registry.yarnpkg.com/next-seo/-/next-seo-4.17.0 .tgz#fb3dbe0ed7414aa9d83872ef5d8510980a6dae7e "
6301
+ integrity sha512-/hnb3oq7bhi8s7bup7+Lm6VzzgRucj+JrWtp+dJiYs/04H0N/NhmE9MpepixQ16fFj6G/39JLYxhzsO/QZG/Kw ==
6302
6302
6303
6303
next-sitemap@^1.2.26 :
6304
6304
version "1.2.26"
You can’t perform that action at this time.
0 commit comments