fix head tags and add page props to body in document file
This commit is contained in:
parent
7819ee0572
commit
3e84d77d6a
@ -1,6 +1,10 @@
|
||||
import { Html, Head, Main, NextScript } from 'next/document'
|
||||
import { Html, Head, Main, NextScript, type DocumentProps } from 'next/document'
|
||||
|
||||
interface DocProps extends DocumentProps { }
|
||||
|
||||
export default function Document(props: DocProps) {
|
||||
const pageProps = props?.__NEXT_DATA__?.props?.['pageProps']
|
||||
|
||||
export default function Document() {
|
||||
return (
|
||||
<Html>
|
||||
<Head>
|
||||
@ -8,7 +12,7 @@ export default function Document() {
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/kimeiga/bahunya/dist/bahunya.min.css" />
|
||||
</Head>
|
||||
|
||||
<body className='bg-gradient'>
|
||||
<body className={`bg-gradient ${pageProps.body_class_name}`}>
|
||||
<Main />
|
||||
<NextScript />
|
||||
</body>
|
||||
|
@ -15,7 +15,6 @@ interface LandingProps {
|
||||
export default function Landing({ jobs, skills, projects }: LandingProps) {
|
||||
return (
|
||||
<div>
|
||||
|
||||
<img src='https://i.giphy.com/TBCVggEb9DzSHTUI19.webp' width={220} height={220} alt="peng" style={{ position: 'fixed', bottom: 0, left: 0 }} />
|
||||
|
||||
<article className='flex-row align-baseline'>
|
||||
|
@ -18,12 +18,9 @@ interface HomeProps {
|
||||
export default function Home({ note, backLinks, fileNames: _, tree, flattenNodes }: HomeProps) {
|
||||
return (
|
||||
<Layout>
|
||||
{/*
|
||||
<Head>
|
||||
{note.title && <meta name="title" content={note.title} />}
|
||||
<body style={{ margin: 0, padding: 0 }} />
|
||||
</Head>
|
||||
*/}
|
||||
<div className='flex gap-1 w-full'>
|
||||
<nav className="">
|
||||
<FolderTree tree={tree} flattenNodes={flattenNodes} />
|
||||
@ -61,7 +58,8 @@ export const getStaticProps: GetStaticProps = (context) => {
|
||||
note,
|
||||
tree,
|
||||
flattenNodes,
|
||||
backLinks: backLinks.filter((link) => (link as { slug: string }).slug !== id)
|
||||
backLinks: backLinks.filter((link) => (link as { slug: string }).slug !== id),
|
||||
body_class_name: 'm-0 p-0'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -2,7 +2,6 @@ import Layout from 'components/Layout'
|
||||
import Util from 'lib/utils'
|
||||
import FolderTree from 'components/FolderTree'
|
||||
import MDContent, { type LinkType } from 'components/MDContent'
|
||||
import Head from 'next/head'
|
||||
|
||||
export interface HomeProps {
|
||||
content: string
|
||||
@ -14,11 +13,6 @@ export interface HomeProps {
|
||||
export default function Home({ content, tree, flattenNodes, backLinks }: HomeProps) {
|
||||
return (
|
||||
<Layout>
|
||||
{/*
|
||||
<Head>
|
||||
<body style={{ margin: 0, padding: 0 }} />
|
||||
</Head>
|
||||
*/}
|
||||
<div className='flex gap-1 w-full'>
|
||||
<nav className="">
|
||||
<FolderTree tree={tree} flattenNodes={flattenNodes} />
|
||||
@ -52,7 +46,9 @@ export function getStaticProps() {
|
||||
content: contentData.data,
|
||||
tree,
|
||||
flattenNodes,
|
||||
backLinks
|
||||
backLinks,
|
||||
body_class_name: 'm-0 p-0'
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -2,6 +2,11 @@ import Head from 'next/head'
|
||||
|
||||
export default function Home() {
|
||||
return (
|
||||
<>
|
||||
<Head>
|
||||
<title>🛝 Playground</title>
|
||||
</Head>
|
||||
|
||||
<div>
|
||||
<Head>
|
||||
<body className="bg-[radial-gradient(ellipse_at_top_right,_var(--tw-gradient-stops))] from-gray-600 to-gray-900 " />
|
||||
@ -27,5 +32,6 @@ export default function Home() {
|
||||
<div className="bg-purple-50 transition-all duration-500 hover:w-36 hover:bg-purple-500 w-20 h-20 shadow-lg hover:shadow-purple-300 rounded-full" />
|
||||
</div>
|
||||
</div>
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user