@@ -4,6 +4,7 @@ import Link from 'next/link'
4
4
import Image from 'next/image'
5
5
import { ConnectButton } from '@instate/kit'
6
6
import { githubLink , notionDocLink , telegramLink } from '@/services/links'
7
+ import midLanscape from '@/public/mid-landscape.png'
7
8
8
9
const Page = ( ) => {
9
10
const linkTo = ( url : string ) => {
@@ -27,8 +28,12 @@ const Page = () => {
27
28
< div className = "relative flex-grow flex flex-row gap-4 md:mb-4" >
28
29
< div className = "w-full md:w-1/2" >
29
30
{ /* INSTATE PROTOCOL */ }
30
- < div className = "w-full h-full p-4 flex flex-col justify-center items-center bg-base-100 rounded-lg" >
31
- < div className = "flex flex-col gap-10" >
31
+ < div className = "w-full h-full p-4 flex flex-col relative justify-center overflow-hidden shadow-xl items-center bg-base-100 rounded-lg" style = { {
32
+ backgroundImage : `url(${ midLanscape . src } )` ,
33
+ backgroundSize : 'cover' ,
34
+ } } >
35
+ < div className = 'w-full absolute top-0 h-full bg-slate-900 bg-opacity-40' />
36
+ < div className = "flex flex-col text-white gap-10 z-10" >
32
37
< h1 className = "text-4xl md:text-6xl font-sans-display font-bold" >
33
38
Instate Protocol
34
39
</ h1 >
@@ -92,7 +97,7 @@ const Page = () => {
92
97
</ div >
93
98
</ div >
94
99
< div className = "w-1/2 hidden md:flex" >
95
- < div className = "w-full h-full flex flex-col justify-center items-center bg-base-300 rounded-lg" >
100
+ < div className = "w-full h-full flex flex-col justify-center items-center bg-base-300 shadow-xl rounded-lg" >
96
101
< div className = " flex flex-col gap-10" >
97
102
< h1 className = "text-6xl font-sans-mono" > 🌐 InstateScan</ h1 >
98
103
< h2 className = "font-sans" >
0 commit comments