Skip to content
2 changes: 1 addition & 1 deletion src/app/(auth)/login/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default function LoginPage() {
// 로그인 훅과 로딩 상태 관리
const { login, isPending } = useLogin();
const [isSocialLogin, setIsSocialLogin] = useState(false);
const [currentProvider, setCurrentProvider] = useState<OAuthProvider>(oauthProviders.GOOGLE);
const [, setCurrentProvider] = useState<OAuthProvider>(oauthProviders.GOOGLE);

// 폼 유효성 검사 및 상태 관리
const {
Expand Down
2 changes: 1 addition & 1 deletion src/app/(auth)/signup/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default function SignupPage() {
{/* 지원자 회원가입 카드 */}
<Link
href="/signup/applicant"
className="flex flex-1 flex-col items-center rounded-lg border-2 border-transparent bg-primary-blue-50 p-8 transition-all hover:scale-105 hover:border-primary-orange-300 hover:shadow-lg"
className="flex flex-1 flex-col items-center rounded-lg border-2 border-transparent bg-primary-blue-50 p-8 transition-all hover:scale-105 hover:border-primary-orange-300 hover:shadow-xl"
>
<div className="flex h-24 w-24 items-center justify-center rounded-full bg-primary-orange-50">
<FaUser className="h-12 w-12 text-primary-orange-300" />
Expand Down
4 changes: 2 additions & 2 deletions src/app/(home)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ export default function LandingPage() {
src={slides[currentSlide].blackAreaImage || ""}
alt={slides[currentSlide].blackAreaTitle || ""}
fill
className="object-contain transition-transform duration-500 hover:scale-105"
className="object-contain transition-transform duration-500"
sizes="(max-width: 768px) 100vw, 600px"
/>
</div>
Expand Down Expand Up @@ -488,7 +488,7 @@ export default function LandingPage() {
src={slides[currentSlide].image}
alt={slides[currentSlide].title}
fill
className="object-contain transition-transform duration-500 hover:scale-105"
className="object-contain transition-transform duration-500"
sizes="(max-width: 768px) 100vw, 600px"
/>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/button/default/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const Button = ({
const colorStyles = {
orange: {
solid:
"bg-primary-orange-300 text-white hover:bg-primary-orange-200 focus:ring-1 focus:ring-primary-orange-200 focus:outline-none disabled:bg-primary-orange-100 disabled:cursor-not-allowed",
"bg-primary-orange-300 text-white hover:bg-primary-orange-350 focus:ring-1 focus:ring-primary-orange-200 focus:outline-none disabled:bg-primary-orange-100 disabled:cursor-not-allowed",
outlined:
"border-2 border-primary-orange-300 text-primary-orange-300 hover:border-primary-orange-200 hover:text-primary-orange-200 focus:ring-1 focus:ring-primary-orange-200 focus:outline-none disabled:border-primary-orange-100 disabled:text-grayscale-100 disabled:cursor-not-allowed disabled:hover:bg-transparent",
},
Expand Down
12 changes: 9 additions & 3 deletions src/app/components/layout/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,22 @@ export default function Header() {
<div className="flex items-center gap-4 md:gap-6">
<Link
href="/work-list"
className="text-sm text-white transition-colors hover:text-lime-400 md:text-base lg:text-lg"
className="text-sm text-white transition-colors hover:text-primary-orange-300 md:text-base lg:text-lg"
>
워크 채널
</Link>
<Link
href="/work-talk"
className="text-sm text-white transition-colors hover:text-lime-400 md:text-base lg:text-lg"
className="text-sm text-white transition-colors hover:text-primary-orange-300 md:text-base lg:text-lg"
>
워크톡
</Link>
<Link
href="/login"
className="text-sm text-white transition-colors hover:text-primary-orange-300 md:text-base lg:text-lg"
>
로그인
</Link>
</div>
</nav>
</header>
Expand All @@ -62,7 +68,7 @@ export default function Header() {

return cn(
"font-medium transition-colors h-16 flex items-center",
"hover:text-lime-900 hover:font-bold hover:opacity-70",
"hover:font-bold hover:text-primary-orange-300",
isActive
? "text-lime-900 text-sm md:text-base lg:text-lg font-bold"
: "text-primary-orange-400 text-sm md:text-base"
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/layout/auth/Background.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export default function Background({ children }: { children: React.ReactNode }) {
return (
<div className="mt-[64px] flex min-h-[calc(100vh-64px)] items-center justify-center bg-gradient-to-r from-primary-orange-100 to-primary-orange-200 px-4 py-12 sm:px-6 lg:px-8">
<div className="mt-[64px] flex min-h-[calc(100vh-64px)] items-center justify-center bg-[rgba(200,248,253,0.33)] py-12 sm:px-6 lg:px-8">
{children}
</div>
);
Expand Down
1 change: 1 addition & 0 deletions tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ const config: Config = {
100: "#bde3bf",
200: "#94d597",
300: "#5ebd63", // 사용자 브랜드 색상
350: "#41a14a",
400: "#4b9f4d",
500: "#008957",
},
Expand Down
Loading