File tree Expand file tree Collapse file tree 2 files changed +21
-8
lines changed Expand file tree Collapse file tree 2 files changed +21
-8
lines changed Original file line number Diff line number Diff line change 11import HomeLayout from "@/components/HomeLayout" ;
22import type { Metadata } from "next" ;
33import MonetizationOnIcon from "@mui/icons-material/MonetizationOn" ;
4+ import Image from "next/image" ;
45
56export const metadata : Metadata = {
67 title : "Widgets" ,
@@ -11,15 +12,27 @@ export default function Home() {
1112 return (
1213 < HomeLayout >
1314 < div className = "flex h-[70svh] w-full overflow-hidden" >
14- < a
15- href = "/finance"
16- className = "dark:border-1 m-auto flex h-40 w-40 rotate-[15deg] cursor-pointer select-none rounded-xl bg-lime-100/40 shadow-lg backdrop-blur duration-100 hover:bg-lime-100/70 md:h-80 md:w-80 dark:border-stone-500/80 dark:bg-black/40 dark:hover:bg-black/30"
17- >
18- < div className = "m-auto text-3xl" >
19- < MonetizationOnIcon fontSize = "large" />
20- < div > Finance</ div >
15+ < div className = "m-auto flex flex-col" >
16+ < a
17+ href = "/finance"
18+ className = "dark:border-1 flex h-40 w-40 rotate-[15deg] cursor-pointer select-none rounded-xl bg-lime-100/40 shadow-lg backdrop-blur duration-100 hover:bg-lime-100/70 md:h-80 md:w-80 dark:border-stone-500/80 dark:bg-black/40 dark:hover:bg-black/30"
19+ >
20+ < div className = "m-auto text-3xl" >
21+ < MonetizationOnIcon fontSize = "large" />
22+ < div > Finance</ div >
23+ </ div >
24+ </ a >
25+ < div className = "pointer-events-none inline-flex select-none items-center justify-center pt-16 text-xl md:text-2xl" >
26+ < span className = "md:pr-1" > Optimized for</ span >
27+ < Image
28+ src = "/notion.png"
29+ alt = "Notion"
30+ className = "p-2 md:p-1"
31+ width = { 40 }
32+ height = { 40 }
33+ />
2134 </ div >
22- </ a >
35+ </ div >
2336 </ div >
2437 </ HomeLayout >
2538 ) ;
You can’t perform that action at this time.
0 commit comments