feat: clean up blog ui
This commit is contained in:
parent
9a42dd8bc2
commit
25afe6cd15
|
@ -7,7 +7,6 @@ import "react-notion-x/src/styles.css";
|
|||
import "prismjs/themes/prism-tomorrow.css";
|
||||
|
||||
import { BackgroundGradentProvider } from "@/components/gradient-provider";
|
||||
import GrainProvider from "@/components/grain";
|
||||
import { Footer } from "../Footer";
|
||||
import { Connect } from "../Connect";
|
||||
import { Home, MessageCircleIcon } from "lucide-react";
|
||||
|
@ -76,14 +75,7 @@ export async function generateMetadata(
|
|||
],
|
||||
|
||||
twitter: {
|
||||
images: [
|
||||
{
|
||||
url: og_image_url.toString(),
|
||||
type: "image/jpeg",
|
||||
height: 630,
|
||||
width: 1200,
|
||||
},
|
||||
],
|
||||
images: [og_image_url.toString()],
|
||||
creator: author.toString(),
|
||||
card: "summary_large_image",
|
||||
title: title,
|
||||
|
@ -182,7 +174,10 @@ export default async function Story({
|
|||
</a>
|
||||
</div>
|
||||
|
||||
<div className="mt-2">
|
||||
<NRenderer recordMap={recordMap} />
|
||||
</div>
|
||||
|
||||
<section className="connect-section">
|
||||
<Connect />
|
||||
</section>
|
||||
|
|
|
@ -78,3 +78,7 @@
|
|||
@apply block;
|
||||
}
|
||||
}
|
||||
|
||||
.notion-collection-page-properties {
|
||||
@apply hidden;
|
||||
}
|
||||
|
|
|
@ -48,7 +48,6 @@ export function NRenderer({
|
|||
|
||||
useEffect(() => {
|
||||
setRender(true);
|
||||
console.log(recordMap);
|
||||
}, [recordMap]);
|
||||
|
||||
if (!render) {
|
||||
|
|
Loading…
Reference in New Issue