2025年3月5日
Cinemento is a movie logging application that helps users track their watching history and discover new films. It integrates with the TMDB API to provide comprehensive movie information.
// MDXのコンテンツ
import MdxContent from "./page.mdx";
// MDX内のexportしたオブジェクトをimport
import { meta } from "./page.mdx"
// syntax hightlight用 CSS
import "prismjs/themes/prism-tomorrow.css";
export default async function Page() {
return (
<article>
<div>{meta.title}</div>
<div>{meta.author}</div>
<MdxContent />
</article>
)
}
export $PATH
{
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/mdx": "^15.3.2",
}
The project focused on creating an intuitive and efficient movie logging experience: