删除多个完成报告文件,优化项目结构以提升可维护性。

This commit is contained in:
乘风
2026-02-03 15:59:37 +08:00
parent d4ca9573f5
commit a2443c097c
119 changed files with 2119 additions and 8537 deletions

View File

@@ -21,7 +21,7 @@ export function ChaptersList({ parts, specialSections }: ChaptersListProps) {
{/* Special sections - Preface */}
{specialSections?.preface && (
<div className="space-y-3">
<Link href={`/read/preface`} className="block group">
<Link href={`/view/read/preface`} className="block group">
<div className="bg-[#0f2137]/60 backdrop-blur-md rounded-xl p-4 border border-transparent hover:border-[#38bdac]/30 transition-all flex items-center justify-between">
<div className="flex items-center gap-3">
<Unlock className="w-4 h-4 text-[#38bdac]" />
@@ -79,7 +79,7 @@ export function ChaptersList({ parts, specialSections }: ChaptersListProps) {
{chapter.sections.map((section) => (
<Link
key={section.id}
href={`/read/${section.id}`}
href={`/view/read/${section.id}`}
className="block px-5 py-4 hover:bg-[#0f2137]/40 transition-colors group"
>
<div className="flex items-center justify-between">
@@ -117,7 +117,7 @@ export function ChaptersList({ parts, specialSections }: ChaptersListProps) {
{/* Special sections - Epilogue */}
{specialSections?.epilogue && (
<div className="mt-8 space-y-3">
<Link href={`/read/epilogue`} className="block group">
<Link href={`/view/read/epilogue`} className="block group">
<div className="bg-[#0f2137]/60 backdrop-blur-md rounded-xl p-4 border border-transparent hover:border-[#38bdac]/30 transition-all flex items-center justify-between">
<div className="flex items-center gap-3">
<Unlock className="w-4 h-4 text-[#38bdac]" />