neurapress/src/app/xiaohongshu/page.tsx
2025-01-27 21:49:23 +08:00

28 lines
868 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { MainNav } from '@/components/nav/MainNav'
import XiaohongshuEditor from '@/components/editor/XiaohongshuEditor'
export default function XiaohongshuPage() {
return (
<div className="min-h-full">
<MainNav />
<main className="py-10">
<div className="container mx-auto">
<div className="mx-auto max-w-5xl">
<div className="mb-8">
<h1 className="text-3xl font-bold tracking-tight text-gray-900">
</h1>
<p className="mt-2 text-sm text-gray-600">
</p>
</div>
<div className="bg-white rounded-xl shadow-sm border p-6">
<XiaohongshuEditor />
</div>
</div>
</div>
</main>
</div>
)
}