Compare commits

..

10 Commits

Author SHA1 Message Date
Li1304553726 8293f6389d add 2025-04-27 19:30:42 +08:00
Li1304553726 8772be5e7a add 2025-04-22 16:40:08 +08:00
Li1304553726 e82c5b7009 add 2025-04-18 08:19:30 +08:00
Li1304553726 824852d128 add 2025-04-17 15:35:46 +08:00
Li1304553726 5a75164f8d add 2025-04-17 10:18:46 +08:00
Li1304553726 79c2a5e083 add 2025-04-16 09:22:13 +08:00
Li1304553726 91e891395c add 2025-04-16 09:13:28 +08:00
Li1304553726 a5bcb50e1f add 2025-04-16 08:59:06 +08:00
Li1304553726 05f17e5ffb add 2025-04-16 08:50:04 +08:00
Li1304553726 1e55baa2f3 add 2025-04-15 22:14:33 +08:00
557 changed files with 1450 additions and 1400 deletions

0
.dockerignore Normal file → Executable file
View File

0
.npmrc Normal file → Executable file
View File

0
.vscode/settings.json vendored Normal file → Executable file
View File

0
Dockerfile Normal file → Executable file
View File

0
Dockerfile_BACKUP Normal file → Executable file
View File

0
README.md Normal file → Executable file
View File

0
apps/server/src/auth/auth.guard.ts Normal file → Executable file
View File

0
apps/server/src/auth/config.ts Normal file → Executable file
View File

0
apps/server/src/auth/session.service.ts Normal file → Executable file
View File

0
apps/server/src/auth/types.ts Normal file → Executable file
View File

0
apps/server/src/auth/utils.ts Normal file → Executable file
View File

0
apps/server/src/filters/exceptions.filter.ts Normal file → Executable file
View File

0
apps/server/src/models/app-config/app-config.module.ts Normal file → Executable file
View File

0
apps/server/src/models/app-config/app-config.router.ts Normal file → Executable file
View File

View File

0
apps/server/src/models/base/base.service.ts Normal file → Executable file
View File

0
apps/server/src/models/base/base.tree.service.ts Normal file → Executable file
View File

0
apps/server/src/models/base/base.type.ts Normal file → Executable file
View File

0
apps/server/src/models/base/errorMap.prisma.ts Normal file → Executable file
View File

0
apps/server/src/models/base/row-cache.service.ts Normal file → Executable file
View File

0
apps/server/src/models/base/row-model.service.ts Normal file → Executable file
View File

0
apps/server/src/models/base/sql-builder.ts Normal file → Executable file
View File

0
apps/server/src/models/base/test.sql Normal file → Executable file
View File

View File

0
apps/server/src/models/department/utils.ts Normal file → Executable file
View File

0
apps/server/src/models/message/message.module.ts Normal file → Executable file
View File

0
apps/server/src/models/message/message.service.ts Normal file → Executable file
View File

0
apps/server/src/models/message/utils.ts Normal file → Executable file
View File

View File

@ -9,6 +9,7 @@ import {
ObjectType, ObjectType,
PostType, PostType,
PostState, PostState,
PostMeta,
} from '@nice/common'; } from '@nice/common';
import { MessageService } from '../message/message.service'; import { MessageService } from '../message/message.service';
import { BaseService } from '../base/base.service'; import { BaseService } from '../base/base.service';
@ -52,6 +53,15 @@ export class PostService extends BaseService<Prisma.PostDelegate> {
return result; return result;
} }
async update(args: Prisma.PostUpdateArgs, staff?: UserProfile) { async update(args: Prisma.PostUpdateArgs, staff?: UserProfile) {
// 确保 meta 字段是一个对象
if (args.data.reTime) {
// 处理不同类型的 reTime 输入
if (typeof args.data.reTime === 'string' || args.data.reTime instanceof Date) {
args.data.reTime = {
set: new Date(args.data.reTime)
};
}
}
args.data.authorId = staff?.id; args.data.authorId = staff?.id;
args.data.updatedAt = new Date(); args.data.updatedAt = new Date();
const result = await super.update(args); const result = await super.update(args);

0
apps/server/src/models/post/utils.ts Normal file → Executable file
View File

0
apps/server/src/models/rbac/role.row.service.ts Normal file → Executable file
View File

View File

View File

View File

View File

0
apps/server/src/models/resource/resource.module.ts Normal file → Executable file
View File

0
apps/server/src/models/resource/resource.router.ts Normal file → Executable file
View File

0
apps/server/src/models/resource/resource.service.ts Normal file → Executable file
View File

0
apps/server/src/models/resource/types.ts Normal file → Executable file
View File

0
apps/server/src/models/staff/staff.row.service.ts Normal file → Executable file
View File

0
apps/server/src/models/staff/utils.ts Normal file → Executable file
View File

0
apps/server/src/models/term/term.row.service.ts Normal file → Executable file
View File

0
apps/server/src/models/term/utils.ts Normal file → Executable file
View File

0
apps/server/src/models/visit/utils.ts Normal file → Executable file
View File

0
apps/server/src/models/visit/visit.module.ts Normal file → Executable file
View File

0
apps/server/src/models/visit/visit.router.ts Normal file → Executable file
View File

0
apps/server/src/models/visit/visit.service.ts Normal file → Executable file
View File

View File

0
apps/server/src/queue/models/post/utils.ts Normal file → Executable file
View File

0
apps/server/src/queue/stats/stats.service.ts Normal file → Executable file
View File

0
apps/server/src/queue/worker/file.processor.ts Normal file → Executable file
View File

0
apps/server/src/socket/base/base-websocket-server.ts Normal file → Executable file
View File

0
apps/server/src/socket/collaboration/callback.ts Normal file → Executable file
View File

View File

0
apps/server/src/socket/collaboration/persistence.ts Normal file → Executable file
View File

0
apps/server/src/socket/collaboration/types.ts Normal file → Executable file
View File

0
apps/server/src/socket/collaboration/ws-shared-doc.ts Normal file → Executable file
View File

0
apps/server/src/socket/collaboration/yjs.server.ts Normal file → Executable file
View File

0
apps/server/src/socket/realtime/realtime.module.ts Normal file → Executable file
View File

0
apps/server/src/socket/realtime/realtime.server.ts Normal file → Executable file
View File

0
apps/server/src/socket/types.ts Normal file → Executable file
View File

0
apps/server/src/socket/websocket.module.ts Normal file → Executable file
View File

0
apps/server/src/socket/websocket.service.ts Normal file → Executable file
View File

0
apps/server/src/tasks/init/gendev.service.ts Normal file → Executable file
View File

0
apps/server/src/tasks/init/utils.ts Normal file → Executable file
View File

0
apps/server/src/trpc/types.ts Normal file → Executable file
View File

0
apps/server/src/upload/tus.service.ts Normal file → Executable file
View File

0
apps/server/src/upload/types.ts Normal file → Executable file
View File

0
apps/server/src/upload/upload.controller.ts Normal file → Executable file
View File

0
apps/server/src/upload/upload.module.ts Normal file → Executable file
View File

0
apps/server/src/upload/utils.ts Normal file → Executable file
View File

0
apps/server/src/utils/event-bus.ts Normal file → Executable file
View File

0
apps/server/src/utils/file.ts Normal file → Executable file
View File

0
apps/server/src/utils/minio/minio.module.ts Normal file → Executable file
View File

0
apps/server/src/utils/minio/minio.service.ts Normal file → Executable file
View File

0
apps/server/src/utils/redis/redis.service.ts Normal file → Executable file
View File

0
apps/server/src/utils/redis/utils.ts Normal file → Executable file
View File

0
apps/server/src/validation/index.ts Normal file → Executable file
View File

0
apps/web/browserCheck.js Normal file → Executable file
View File

0
apps/web/entrypoint.sh Normal file → Executable file
View File

0
apps/web/public/chrome.exe Normal file → Executable file
View File

0
apps/web/public/logo.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 231 KiB

After

Width:  |  Height:  |  Size: 231 KiB

4
apps/web/public/vite.svg Executable file → Normal file
View File

@ -1,3 +1 @@
<svg width="64px" height="64px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1744765741176" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5595" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M517.2 149.2c8.5-16.4 26.3-28.9 48-12.3l115.1 114.8c13.8 15 18.3 42.3 0.1 63.2L596 399.6h-0.6V266H441.8v138.9l-92.4-94c-17.5-22-10.3-46.2 5-61.9L464 140.8c17.2-15.6 39.9-16.2 53.2 8.4zM876.1 514c16.4-8.5 28.9-26.3 12.3-48L773.6 350.9c-15-13.8-42.3-18.3-63.2-0.1L622 440.5h139v154.9H626.4l87.9 86.4c22 17.5 46.2 10.3 61.9-5l108.2-109.6c15.7-17.1 16.2-39.8-8.3-53.2z m-727-5.8c-16.4-8.5-28.9-26.3-12.3-48l114.8-115.1c15-13.8 42.3-18.3 63.2-0.1l84.3 84H266.7v154.9h138L310.9 676c-22 17.5-46.2 10.3-61.9-5L140.8 561.3c-15.7-17-16.2-39.7 8.3-53.1z m361.7 367.4c8.5 16.4 26.3 28.9 48 12.3l115.1-114.8c13.8-15 18.3-42.3 0.1-63.2l-90.4-88.3v138.1H430.8v-135L343 713.9c-17.5 22-10.3 46.2 5 61.9L457.7 884c17 15.7 39.8 16.2 53.1-8.4z" fill="#E50012" p-id="5596"></path></svg>
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 4C2.89543 4 2 4.89543 2 6V18C2 19.1046 2.89543 20 4 20H20C21.1046 20 22 19.1046 22 18V6C22 4.89543 21.1046 4 20 4H4ZM20 6L12 11L4 6H20ZM4 8.61803V18H20V8.61803L12 13.618L4 8.61803Z" fill="#4A90E2"/>
</svg>

Before

Width:  |  Height:  |  Size: 360 B

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -18,41 +18,41 @@ import type { CarouselRef } from "antd/es/carousel";
import { useAppConfig } from "@nice/client"; import { useAppConfig } from "@nice/client";
import { useNavigate } from "react-router-dom"; import { useNavigate } from "react-router-dom";
interface PlatformStat { // interface PlatformStat {
icon: React.ReactNode; // icon: React.ReactNode;
value: number; // value: number;
label: string; // label: string;
} // }
const HeroSection = () => { const HeroSection = () => {
const carouselRef = useRef<CarouselRef>(null); const carouselRef = useRef<CarouselRef>(null);
const { statistics, slides, slideLinks = [] } = useAppConfig(); const { statistics, slides, slideLinks = [] } = useAppConfig();
const [countStatistics, setCountStatistics] = useState<number>(4); const [countStatistics, setCountStatistics] = useState<number>(4);
const navigator = useNavigate() const navigator = useNavigate();
const platformStats: PlatformStat[] = useMemo(() => { // const platformStats: PlatformStat[] = useMemo(() => {
return [ // return [
{ // {
icon: <TeamOutlined />, // icon: <TeamOutlined />,
value: statistics.staffs, // value: statistics.staffs,
label: "注册学员", // label: "注册学员",
}, // },
{ // {
icon: <StarOutlined />, // icon: <StarOutlined />,
value: statistics.courses, // value: statistics.courses,
label: "精品课程", // label: "精品课程",
}, // },
{ // {
icon: <BookOutlined />, // icon: <BookOutlined />,
value: statistics.lectures, // value: statistics.lectures,
label: "课程章节", // label: "课程章节",
}, // },
{ // {
icon: <EyeOutlined />, // icon: <EyeOutlined />,
value: statistics.reads, // value: statistics.reads,
label: "播放次数", // label: "播放次数",
}, // },
]; // ];
}, [statistics]); // }, [statistics]);
const handlePrev = useCallback(() => { const handlePrev = useCallback(() => {
carouselRef.current?.prev(); carouselRef.current?.prev();
}, []); }, []);
@ -76,33 +76,33 @@ const HeroSection = () => {
<Carousel <Carousel
ref={carouselRef} ref={carouselRef}
autoplay autoplay
effect="fade" // effect="fade"
className="h-[600px] mb-24" className="h-[600px] mb-24"
adaptiveHeight={true}
speed={1500}
dotPosition="right"
dots={{ dots={{
className: "carousel-dots !bottom-32 !z-20", className: "carousel-dots !bottom-32 !z-20",
}}> }}
>
{Array.isArray(slides) ? ( {Array.isArray(slides) ? (
slides.map((item, index) => ( slides.map((item, index) => (
<div key={index} className="relative h-[600px] cursor-pointer" <div
key={index}
className="relative h-[600px] cursor-pointer"
onClick={() => { onClick={() => {
if(slideLinks?.[index])window.open(slideLinks?.[index],"_blank") if (slideLinks?.[index])
window.open(slideLinks?.[index], "_blank");
}} }}
> >
<div <div
className="absolute inset-0 bg-cover bg-center transform transition-[transform,filter] duration-[2000ms] group-hover:scale-105 group-hover:brightness-110 will-change-[transform,filter]" className="absolute inset-0 bg-cover bg-center transform transition-[transform,filter] duration-[2000ms] group-hover:brightness-110 will-change-[transform,filter]"
style={{ style={{
//backgroundImage: `url(https://s.cn.bing.net/th?id=OHR.GiantCuttlefish_ZH-CN0670915878_1920x1080.webp&qlt=50)`, //backgroundImage: `url(https://s.cn.bing.net/th?id=OHR.GiantCuttlefish_ZH-CN0670915878_1920x1080.webp&qlt=50)`,
backgroundImage: `url(${item})`, backgroundImage: `url(${item})`,
backfaceVisibility: "hidden", backfaceVisibility: "hidden",
}} }}
/> />
{/* <div
className={`absolute inset-0 bg-gradient-to-r ${item.color} to-transparent opacity-90 mix-blend-overlay transition-opacity duration-500`}
/> */}
<div className="absolute inset-0 bg-gradient-to-t from-black/50 to-transparent" />
{/* Content Container */}
<div className="relative h-full max-w-7xl mx-auto px-6 lg:px-8"></div>
</div> </div>
)) ))
) : ( ) : (
@ -114,42 +114,44 @@ const HeroSection = () => {
<button <button
onClick={handlePrev} onClick={handlePrev}
className="absolute left-4 md:left-8 top-1/2 -translate-y-1/2 z-10 opacity-0 group-hover:opacity-100 transition-all duration-300 bg-black/20 hover:bg-black/30 w-12 h-12 flex items-center justify-center rounded-full transform hover:scale-110 hover:shadow-lg" className="absolute left-4 md:left-8 top-1/2 -translate-y-1/2 z-10 opacity-0 group-hover:opacity-100 transition-all duration-300 bg-black/20 hover:bg-black/30 w-12 h-12 flex items-center justify-center rounded-full transform hover:scale-110 hover:shadow-lg"
aria-label="Previous slide"> aria-label="Previous slide"
>
<LeftOutlined className="text-white text-xl" /> <LeftOutlined className="text-white text-xl" />
</button> </button>
<button <button
onClick={handleNext} onClick={handleNext}
className="absolute right-4 md:right-8 top-1/2 -translate-y-1/2 z-10 opacity-0 group-hover:opacity-100 transition-all duration-300 bg-black/20 hover:bg-black/30 w-12 h-12 flex items-center justify-center rounded-full transform hover:scale-110 hover:shadow-lg" className="absolute right-4 md:right-8 top-1/2 -translate-y-1/2 z-10 opacity-0 group-hover:opacity-100 transition-all duration-300 bg-black/20 hover:bg-black/30 w-12 h-12 flex items-center justify-center rounded-full transform hover:scale-110 hover:shadow-lg"
aria-label="Next slide"> aria-label="Next slide"
>
<RightOutlined className="text-white text-xl" /> <RightOutlined className="text-white text-xl" />
</button> </button>
</div> </div>
{/* Stats Container */} {/* Stats Container */}
{countStatistics > 1 && ( {/* {countStatistics > 1 && (
<div className="absolute -bottom-20 left-1/2 -translate-x-1/2 w-3/5 max-w-6xl px-4"> <div className="absolute -bottom-20 left-1/2 -translate-x-1/2 w-3/5 max-w-6xl px-4">
<div <div
className={`rounded-2xl grid grid-cols-${countStatistics} lg:grid-cols-${countStatistics} md:grid-cols-${countStatistics} gap-4 md:gap-8 p-6 md:p-8 bg-white border shadow-xl hover:shadow-2xl transition-shadow duration-500 will-change-[transform,box-shadow]`}> className={`rounded-2xl grid grid-cols-${countStatistics} lg:grid-cols-${countStatistics} md:grid-cols-${countStatistics} gap-4 md:gap-8 p-6 md:p-8 bg-white border shadow-xl hover:shadow-2xl transition-shadow duration-500 will-change-[transform,box-shadow]`}
{platformStats.map((stat, index) => { >
{/* {platformStats.map((stat, index) => {
return stat.value ? ( return stat.value ? (
<div <div
key={index} key={index}
className="text-center transform hover:-translate-y-1 hover:scale-105 transition-transform duration-300 ease-out"> className="text-center transform hover:-translate-y-1 hover:scale-105 transition-transform duration-300 ease-out"
>
<div className="inline-flex items-center justify-center w-16 h-16 mb-4 rounded-full bg-primary-50 text-primary-600 text-3xl transition-colors duration-300 group-hover:text-primary-700"> <div className="inline-flex items-center justify-center w-16 h-16 mb-4 rounded-full bg-primary-50 text-primary-600 text-3xl transition-colors duration-300 group-hover:text-primary-700">
{stat.icon} {stat.icon}
</div> </div>
<div className="text-2xl font-bold bg-gradient-to-r from-gray-800 to-gray-600 bg-clip-text text-transparent mb-1.5"> <div className="text-2xl font-bold bg-gradient-to-r from-gray-800 to-gray-600 bg-clip-text text-transparent mb-1.5">
{stat.value} {stat.value}
</div> </div>
<div className="text-gray-600 font-medium"> <div className="text-gray-600 font-medium">{stat.label}</div>
{stat.label}
</div>
</div> </div>
) : null; ) : null;
})} })} */}
{/* </div>
</div> </div>
</div> )} */}
)}
</section> </section>
); );
}; };

40
apps/web/src/app/SubmissionSuccess.tsx Normal file → Executable file
View File

@ -1,21 +1,37 @@
import { useEffect } from "react"; import { useEffect, useState } from "react";
import { useSearchParams } from "react-router-dom"; import { useSearchParams } from "react-router-dom";
import { Form } from "antd"; import { Form, message } from "antd";
import { CopyOutlined } from "@ant-design/icons";
export default function SubmissionSuccess() { export default function SubmissionSuccess() {
const [searchParams] = useSearchParams(); const [searchParams] = useSearchParams();
const [messageApi, contextHolder] = message.useMessage();
const ownCode = searchParams.get("ownCode");
useEffect(() => { useEffect(() => {
window.scrollTo(0, 0); window.scrollTo(0, 0);
}, []); }, []);
const copyToClipboard = () => {
navigator.clipboard
.writeText(ownCode || "")
.then(() => {
messageApi.success("复制成功");
})
.catch(() => {
messageApi.error("复制失败,请手动复制");
});
};
return ( return (
<div className="bg-white min-h-screen flex flex-col items-center rounded-xl p-40"> <div className="bg-white min-h-screen flex flex-col items-center rounded-xl p-40">
{contextHolder}
<h1 className="text-3xl font-bold mb-8 text-green-700"></h1> <h1 className="text-3xl font-bold mb-8 text-green-700"></h1>
{/* 投递时间 */} {/* 投递时间 */}
<Form className="w-full max-w-2xl"> {/* 新增宽度容器 */} <Form className="w-full max-w-2xl">
<Form.Item {" "}
className="grid grid-cols-[1fr_2fr] items-center pb-2 gap-4 w-full" {/* 新增宽度容器 */}
> <Form.Item className="grid grid-cols-[1fr_2fr] items-center pb-2 gap-4 w-full">
<span className="text-gray-600">:</span> <span className="text-gray-600">:</span>
<span className="text-min text-left text-gray-600"> <span className="text-min text-left text-gray-600">
{searchParams.get("submitTime")} {searchParams.get("submitTime")}
@ -23,9 +39,15 @@ export default function SubmissionSuccess() {
</Form.Item> </Form.Item>
</Form> </Form>
{/* 回执编号 */} {/* 回执编号 */}
<div className="bg-blue-100 p-6 rounded-lg mb-8 w-full max-w-2xl"> {/* 已有相同宽度 */} <div className="bg-blue-100 p-6 rounded-lg mb-8 w-full max-w-2xl flex items-center justify-between">
<div className="text-4xl font-mono text-center text-blue-600 font-bold"> <div className="text-4xl font-mono text-center text-blue-600 font-bold flex-grow">
{searchParams.get("ownCode")} {ownCode}
</div>
<div
className="cursor-pointer p-2 hover:bg-blue-200 rounded-md transition-colors duration-300"
onClick={copyToClipboard}
>
<CopyOutlined className="text-2xl text-blue-600" />
</div> </div>
</div> </div>
<Form className="w-full max-w-2xl space-y-4 mb-8 text-center"> <Form className="w-full max-w-2xl space-y-4 mb-8 text-center">

0
apps/web/src/app/admin/base-setting/page.tsx Normal file → Executable file
View File

0
apps/web/src/app/auth/login.tsx Normal file → Executable file
View File

0
apps/web/src/app/auth/page.tsx Normal file → Executable file
View File

0
apps/web/src/app/auth/register.tsx Normal file → Executable file
View File

0
apps/web/src/app/auth/useAuthForm.ts Normal file → Executable file
View File

0
apps/web/src/app/denied.tsx Normal file → Executable file
View File

0
apps/web/src/app/main/help/page.tsx Normal file → Executable file
View File

0
apps/web/src/app/main/letter/detail/page.tsx Normal file → Executable file
View File

0
apps/web/src/app/main/letter/editor/page.tsx Normal file → Executable file
View File

8
apps/web/src/app/main/letter/inbox/Header.tsx Normal file → Executable file
View File

@ -5,7 +5,7 @@ export function Header() {
{/* 主标题区域 */} {/* 主标题区域 */}
<div> <div>
<h1 className="text-3xl font-bold tracking-wider text-white"> <h1 className="text-3xl font-bold tracking-wider text-white">
</h1> </h1>
{/* <p className="mt-2 text-blue-100 text-lg"> {/* <p className="mt-2 text-blue-100 text-lg">
@ -27,7 +27,7 @@ export function Header() {
d="M20 13V6a2 2 0 00-2-2H6a2 2 0 00-2 2v7m16 0v5a2 2 0 01-2 2H6a2 2 0 01-2-2v-5m16 0h-2.586a1 1 0 00-.707.293l-2.414 2.414a1 1 0 01-.707.293h-3.172a1 1 0 01-.707-.293l-2.414-2.414A1 1 0 006.586 13H4" d="M20 13V6a2 2 0 00-2-2H6a2 2 0 00-2 2v7m16 0v5a2 2 0 01-2 2H6a2 2 0 01-2-2v-5m16 0h-2.586a1 1 0 00-.707.293l-2.414 2.414a1 1 0 01-.707.293h-3.172a1 1 0 01-.707-.293l-2.414-2.414A1 1 0 006.586 13H4"
/> />
</svg> </svg>
<span></span> <span></span>
</div> </div>
<div className="flex items-center gap-2"> <div className="flex items-center gap-2">
<svg <svg
@ -42,7 +42,7 @@ export function Header() {
d="M12 6v6m0 0v6m0-6h6m-6 0H6" d="M12 6v6m0 0v6m0-6h6m-6 0H6"
/> />
</svg> </svg>
<span></span> <span></span>
</div> </div>
<div className="flex items-center gap-2"> <div className="flex items-center gap-2">
<svg <svg
@ -57,7 +57,7 @@ export function Header() {
d="M8 10h.01M12 10h.01M16 10h.01M9 16H5a2 2 0 01-2-2V6a2 2 0 012-2h14a2 2 0 012 2v8a2 2 0 01-2 2h-5l-5 5v-5z" d="M8 10h.01M12 10h.01M16 10h.01M9 16H5a2 2 0 01-2-2V6a2 2 0 012-2h14a2 2 0 012 2v8a2 2 0 01-2 2h-5l-5 5v-5z"
/> />
</svg> </svg>
<span></span> <span></span>
</div> </div>
</div> </div>
</div> </div>

0
apps/web/src/app/main/letter/inbox/page.tsx Normal file → Executable file
View File

0
apps/web/src/app/main/letter/index/page.tsx Normal file → Executable file
View File

0
apps/web/src/app/main/letter/list/Header.tsx Normal file → Executable file
View File

0
apps/web/src/app/main/letter/list/PostCount.tsx Normal file → Executable file
View File

3
apps/web/src/app/main/letter/list/StaffCard.tsx Normal file → Executable file
View File

@ -36,7 +36,6 @@ export function StaffCard({ staff }: StaffCardProps) {
</div> </div>
)} )}
</div> </div>
{/* Content Container */} {/* Content Container */}
<div className="flex-1 p-4 flex flex-col justify-center gap-2"> <div className="flex-1 p-4 flex flex-col justify-center gap-2">
<h3 className="text-xl font-semibold text-primary"> <h3 className="text-xl font-semibold text-primary">
@ -56,7 +55,7 @@ export function StaffCard({ staff }: StaffCardProps) {
lineHeight: 14, lineHeight: 14,
boxShadow: "none", boxShadow: "none",
}}> }}>
</Button> </Button>
</div> </div>
</div> </div>

Some files were not shown because too many files have changed in this diff Show More