Skip to content

Commit 96a168f

Browse files
committed
refactor: detail style
1 parent 2f35261 commit 96a168f

4 files changed

Lines changed: 10 additions & 5 deletions

File tree

apps/landing/public/favicon.ico

320 Bytes
Binary file not shown.

apps/landing/src/app/app.tsx

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,11 @@ export function App() {
3333
}, []);
3434

3535
return (
36-
<div className="text-background flex flex-col items-center overflow-x-hidden bg-[#0F0F10]">
37-
<div className="flex w-full max-w-[1228px] flex-1 flex-col items-center px-6 pb-[168px] max-md:pb-[80px]">
36+
<div className="text-background relative flex w-full flex-col items-center overflow-x-hidden bg-[#0F0F10]">
37+
<div className="absolute left-0 right-0 top-0 z-0 h-[890px]">
38+
<img src={Images.landingBg} className="h-full" />
39+
</div>
40+
<div className="flex w-full max-w-[1228px] flex-1 flex-col items-center pb-[168px] max-md:pb-[80px]">
3841
<div className="fixed top-[14px] z-[999] w-full px-6">
3942
<div className="flex h-[60px] items-center rounded-[18px] bg-[#1B1B1B]/[0.56] px-4 backdrop-blur-[13px]">
4043
<img src={Images.eurekaCodesLogo} className="h-7" />
@@ -43,7 +46,7 @@ export function App() {
4346
</button>
4447
</div>
4548
</div>
46-
<div className="relative flex w-full max-w-[1228px] flex-col items-center justify-center gap-11 bg-[#1B1B1B]/50 pb-[188px] pt-[228px] max-md:gap-6 max-md:pb-[90px] max-md:pt-[120px]">
49+
<div className="relative flex w-full max-w-[1228px] flex-col items-center justify-center gap-11 px-6 pb-[188px] pt-[228px] max-md:gap-6 max-md:pb-[90px] max-md:pt-[120px]">
4750
<p className="relative z-10 text-center text-[52px] leading-tight text-white/[0.86] max-md:text-[36px] max-md:leading-tight">
4851
<Trans
4952
i18nKey="<strong>EurekaKit</strong> provides app and<br/>backend code to help you build your MVP quickly."
@@ -61,7 +64,8 @@ export function App() {
6164
}}
6265
/>
6366
</p>
64-
<RadialGradient
67+
68+
{/* <RadialGradient
6569
radius={300}
6670
colorStops={[
6771
{ position: '0%', color: 'rgba(19, 46, 180, 0.3)' },
@@ -90,7 +94,7 @@ export function App() {
9094
{ position: '90%', color: 'rgba(255, 200, 19, 0)' },
9195
]}
9296
className="absolute -right-32 -top-44 opacity-30 blur-md"
93-
/>
97+
/> */}
9498
</div>
9599
</div>
96100

assets/src/images/landing_bg.png

2.81 MB
Loading

assets/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ export const Images = {
99
landingBannder2: new URL('./images/landing_banner2.png', import.meta.url).href,
1010
landingBannder3: new URL('./images/landing_banner3.png', import.meta.url).href,
1111
globe: new URL('./images/globe.svg', import.meta.url).href,
12+
landingBg: new URL('./images/landing_bg.png', import.meta.url).href,
1213
} as const;

0 commit comments

Comments
 (0)