add opengraph image + embed

This commit is contained in:
horsefacts
2024-11-27 10:41:18 -05:00
committed by lucas-neynar
parent 0e2e706c48
commit f957312437
3 changed files with 68 additions and 10 deletions

13
src/app/app.tsx Normal file
View File

@@ -0,0 +1,13 @@
"use client";
import dynamic from "next/dynamic";
const Demo = dynamic(() => import("~/components/Demo"), {
ssr: false,
});
export default function App() {
return (
<Demo />
);
}