This commit is contained in:
2026-02-06 04:41:59 +08:00
parent 12eb5c412a
commit fe5e8533b5
3 changed files with 14 additions and 14 deletions

View File

@@ -3,7 +3,7 @@
import { useState, useEffect, useCallback } from "react"; import { useState, useEffect, useCallback } from "react";
import { useTranslations } from "next-intl"; import { useTranslations } from "next-intl";
import { Letter, SupportedAlphabets } from "@/lib/interfaces"; import { Letter, SupportedAlphabets } from "@/lib/interfaces";
import { IconClick, CircleToggleButton, CircleButton } from "@/components/ui/buttons"; import { IconClick, CircleToggleButton, CircleButton, PrimaryButton } from "@/components/ui/buttons";
import { IMAGES } from "@/config/images"; import { IMAGES } from "@/config/images";
import { ChevronLeft, ChevronRight } from "lucide-react"; import { ChevronLeft, ChevronRight } from "lucide-react";
import { PageLayout } from "@/components/ui/PageLayout"; import { PageLayout } from "@/components/ui/PageLayout";
@@ -191,12 +191,12 @@ export function AlphabetCard({ alphabet, alphabetType, onBack }: AlphabetCardPro
{/* 中间区域:随机按钮 */} {/* 中间区域:随机按钮 */}
<div className="flex gap-2 items-center"> <div className="flex gap-2 items-center">
{isRandomMode && ( {isRandomMode && (
<button <PrimaryButton
onClick={goToRandom} onClick={goToRandom}
className="px-4 py-2 rounded-full bg-[#35786f] text-white text-sm font-medium hover:bg-[#2d5f58] transition-colors" className="rounded-full px-4 py-2 text-sm"
> >
{t("randomNext")} {t("randomNext")}
</button> </PrimaryButton>
)} )}
</div> </div>

View File

@@ -6,6 +6,7 @@ import Link from "next/link";
import { Folder as Fd } from "lucide-react"; import { Folder as Fd } from "lucide-react";
import { TSharedFolderWithTotalPairs } from "@/shared/folder-type"; import { TSharedFolderWithTotalPairs } from "@/shared/folder-type";
import { PageLayout } from "@/components/ui/PageLayout"; import { PageLayout } from "@/components/ui/PageLayout";
import { PrimaryButton } from "@/components/ui/buttons";
interface FolderSelectorProps { interface FolderSelectorProps {
folders: TSharedFolderWithTotalPairs[]; folders: TSharedFolderWithTotalPairs[];
@@ -23,11 +24,10 @@ const FolderSelector: React.FC<FolderSelectorProps> = ({ folders }) => {
<h1 className="text-2xl md:text-3xl font-bold text-gray-800 mb-4"> <h1 className="text-2xl md:text-3xl font-bold text-gray-800 mb-4">
{t("noFolders")} {t("noFolders")}
</h1> </h1>
<Link <Link href="/folders">
className="inline-block px-6 py-2 bg-[#35786f] text-white rounded-full hover:bg-[#2d5f58] transition-colors" <PrimaryButton className="px-6 py-2">
href="/folders"
>
Go to Folders Go to Folders
</PrimaryButton>
</Link> </Link>
</div> </div>
) : ( ) : (

View File

@@ -1,6 +1,7 @@
import Image from "next/image"; import Image from "next/image";
import Link from "next/link"; import Link from "next/link";
import { PageLayout } from "@/components/ui/PageLayout"; import { PageLayout } from "@/components/ui/PageLayout";
import { LinkButton } from "@/components/ui/buttons";
import { actionGetUserProfileByUsername } from "@/modules/auth/auth-action"; import { actionGetUserProfileByUsername } from "@/modules/auth/auth-action";
import { repoGetFoldersWithTotalPairsByUserId } from "@/modules/folder/folder-repository"; import { repoGetFoldersWithTotalPairsByUserId } from "@/modules/folder/folder-repository";
import { notFound } from "next/navigation"; import { notFound } from "next/navigation";
@@ -176,11 +177,10 @@ export default async function UserPage({ params }: UserPageProps) {
{new Date(folder.createdAt).toLocaleDateString()} {new Date(folder.createdAt).toLocaleDateString()}
</td> </td>
<td className="px-6 py-4 whitespace-nowrap text-right text-sm font-medium"> <td className="px-6 py-4 whitespace-nowrap text-right text-sm font-medium">
<Link <Link href={`/folders/${folder.id}`}>
href={`/folders/${folder.id}`} <LinkButton>
className="text-[#35786f] hover:text-[#2a5f58]"
>
{t("folders.view")} {t("folders.view")}
</LinkButton>
</Link> </Link>
</td> </td>
</tr> </tr>