Skip to content

Commit 19b1444

Browse files
SUNSUN
authored andcommitted
design: main 수정
1 parent ee6534e commit 19b1444

2 files changed

Lines changed: 12 additions & 14 deletions

File tree

apps/client/src/components/home/index.tsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const TopHeroYoutube = () => {
3535
<div className="absolute inset-0 overflow-hidden opacity-70">
3636
<YoutubeVideo
3737
videoId={videoId}
38-
className="h-full w-full origin-center scale-[1.05] transform-gpu sm:scale-[1.2]"
38+
className="h-full w-full origin-center scale-[1.2] transform-gpu"
3939
autoplay
4040
mute
4141
loop
@@ -51,7 +51,7 @@ const HomePage2 = () => {
5151
<div className="flex min-h-screen flex-col bg-white">
5252
<main className="flex-1">
5353
{/* Video Hero Section - Compact */}
54-
<section className="relative z-0 aspect-[2.2] w-full overflow-hidden sm:aspect-[2.95]">
54+
<section className="relative z-0 aspect-[2.95] w-full overflow-hidden">
5555
<div className="absolute inset-0 bg-[#1e2a4a]" />
5656
<Suspense clientOnly fallback={<div className="absolute inset-0" />}>
5757
<TopHeroYoutube />
@@ -61,17 +61,17 @@ const HomePage2 = () => {
6161
{/* Welcome Section */}
6262
<section className="px-6 pb-24 pt-12 sm:pb-28 sm:pt-16 lg:px-16 lg:pb-36 lg:pt-20">
6363
<div className="mx-auto flex max-w-7xl flex-col gap-4">
64-
<div className="flex flex-col gap-16">
64+
<div className="flex flex-col gap-8 lg:gap-16">
6565
<div className="flex flex-col gap-4">
66-
<h1 className="font-poppins flex flex-col text-3xl font-bold leading-tight text-[#1e2a4a] sm:text-5xl lg:text-6xl">
66+
<h1 className="font-poppins flex flex-col text-4xl font-bold leading-tight text-[#1e2a4a] sm:text-5xl lg:text-6xl">
6767
<span className="text-[#333333]">LOVE BEGINS,</span>
68-
<span className="">MYUNGMOON CHURCH!</span>
68+
<span className="leading-10">MYUNGMOON CHURCH!</span>
6969
</h1>
70-
<p className="text-base font-bold text-[#1e2a4a] sm:text-[22px]">
70+
<p className="text-lg font-bold text-[#1e2a4a] sm:text-[22px]">
7171
사랑의 시작, 명문교회에 오신 것을 환영합니다!
7272
</p>
7373
</div>
74-
<div className="flex flex-col gap-4 sm:flex-row">
74+
<div className="flex gap-4">
7575
<Button className="rounded-none bg-[#1e2a4a] px-6 py-4 text-sm tracking-wider text-white hover:bg-[#2d3a5a] sm:px-8 sm:py-6">
7676
<Link href={data?.url || ""} target="_blank">
7777
유튜브 라이브

apps/client/src/components/ui/header.tsx

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -86,16 +86,14 @@ export function Header() {
8686
>
8787
{/* Logo */}
8888
<Link href="/" className="flex items-center gap-3">
89-
<Image
90-
src="/images/logo.svg"
91-
alt="명문교회 로고"
92-
width={150}
93-
height={150}
89+
<div
9490
className={cn(
95-
"origin-center transition-transform duration-300",
91+
"relative h-[100px] w-[100px] origin-center transition-transform duration-300 md:h-[150px] md:w-[150px]",
9692
scrolled ? "scale-[0.42]" : "scale-100",
9793
)}
98-
/>
94+
>
95+
<Image src="/images/logo.svg" alt="명문교회 로고" fill={true} />
96+
</div>
9997
</Link>
10098

10199
{/* Desktop Navigation */}

0 commit comments

Comments
 (0)