Skip to content

Commit 0db66b6

Browse files
committed
fix: test
1 parent 907d4aa commit 0db66b6

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

apps/tuk-landing/src/app/(home)/src/components/MainSection.tsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,17 @@ import Link from 'next/link';
55

66
const MainSection = () => {
77
return (
8-
<section id="thumbnail" className="fixed left-0 top-0 z-[-1] h-dvh w-full">
8+
<section id="thumbnail" className="h-dvh w-full">
99
<div className="absolute inset-0 z-0">
1010
<Image
1111
src="/main-bg.jpg"
1212
alt="Main Background"
13-
fill
13+
fill={false}
1414
priority
1515
quality={100}
16-
className="object-cover object-center opacity-90"
16+
width={1440}
17+
height={900}
18+
className="size-full object-cover object-center opacity-90"
1719
/>
1820
</div>
1921

apps/tuk-landing/src/app/(home)/src/components/ServiceInfoSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import Link from 'next/link';
33

44
const ServiceInfoSection = () => {
55
return (
6-
<div className="mt-[100dvh] rounded-t-[3.75rem] bg-white-default pt-[3.75rem] max-[880px]:rounded-t-[1.625rem] max-[880px]:pt-[1.625rem]">
6+
<div className="rounded-t-[3.75rem] bg-white-default pt-[3.75rem] max-[880px]:rounded-t-[1.625rem] max-[880px]:pt-[1.625rem]">
77
<section className="relative mb-40 mt-[8.75rem] max-[1280px]:mt-[6.25rem] max-[880px]:mt-10">
88
<div className="m-auto max-w-screen-xl overflow-hidden p-0 px-[4.375rem] max-[1280px]:max-w-[880px] max-[1280px]:px-6 min-[1281px]:p-[2.875rem]">
99
<div className="px-6">

0 commit comments

Comments
 (0)