2025-02-13 15:54:18 +08:00
|
|
|
import { getArticle } from "@/app/_lib/data/article"
|
|
|
|
import MarkdownView from "@/app/_ui/MarkdownView"
|
|
|
|
import { faArrowRight } from "@fortawesome/free-solid-svg-icons"
|
|
|
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"
|
2025-02-17 18:17:12 +08:00
|
|
|
import Image from "next/image"
|
2025-02-27 19:02:12 +08:00
|
|
|
import { MDXRemote } from 'next-mdx-remote/rsc'
|
2025-02-13 15:54:18 +08:00
|
|
|
import Link from "next/link"
|
2025-03-03 18:37:04 +08:00
|
|
|
import { mdxComponent } from "@/app/_lib/MdxComponent"
|
|
|
|
import { CustomMDX } from "@/app/_ui/customComponent"
|
2025-02-27 18:40:23 +08:00
|
|
|
const PICTURE_PREFIX = 'https://newuitab.oss-cn-hangzhou.aliyuncs.com/ai_upload/downloads/'
|
2025-02-13 15:54:18 +08:00
|
|
|
export default async function Page({ params }: { params: Promise<{ id: string }> }) {
|
|
|
|
const id = (await params).id
|
|
|
|
const article = await getArticle(id)
|
2025-02-27 18:40:23 +08:00
|
|
|
|
2025-02-13 15:54:18 +08:00
|
|
|
if (!article) return <></>
|
2025-02-27 18:40:23 +08:00
|
|
|
return <div className="w-full h-full min-h-[100vh] flex justify-center ">
|
|
|
|
<div className="w-full max-w-[1000px] px-4 h-full pb-[50px] pt-[30px] bg-white/50 shadow rounded-lg ">
|
2025-02-13 15:54:18 +08:00
|
|
|
<div className="w-full h-full ">
|
|
|
|
<div className="flex gap-x-5">
|
2025-02-27 18:40:23 +08:00
|
|
|
<div className="p-4 mb-10 rounded-lg bg-white/60 shadow">
|
|
|
|
<img src={PICTURE_PREFIX + article?.cover} width={200} height={200} className=" rounded-lg shadow object-cover w-[200px] h-[200px]" alt="">
|
|
|
|
</img>
|
2025-02-13 15:54:18 +08:00
|
|
|
</div>
|
|
|
|
<div className="flex flex-col gap-y-3 py-5">
|
|
|
|
<h1 className="text-2xl">{article.title}</h1>
|
|
|
|
<article className=" line-clamp-3 overflow-hidden text-ellipsis">{article.description}</article>
|
|
|
|
<Link href={article.link} className="px-3 py-2 duration-150 bg-red-500 hover:bg-red-500/80 flex items-center justify-center rounded-lg text-white">
|
|
|
|
访问官网
|
|
|
|
<FontAwesomeIcon icon={faArrowRight} className="ml-2" />
|
|
|
|
</Link>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div className="w-full">
|
2025-03-03 18:37:04 +08:00
|
|
|
<CustomMDX source={article.content} ></CustomMDX>
|
2025-02-13 15:54:18 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
}
|