Skip to content

Commit 883d009

Browse files
committed
Add notion tagline
1 parent 8bddeed commit 883d009

File tree

2 files changed

+21
-8
lines changed

2 files changed

+21
-8
lines changed

public/notion.png

11.1 KB
Loading

src/app/page.tsx

Lines changed: 21 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import HomeLayout from "@/components/HomeLayout";
22
import type { Metadata } from "next";
33
import MonetizationOnIcon from "@mui/icons-material/MonetizationOn";
4+
import Image from "next/image";
45

56
export 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
);

0 commit comments

Comments
 (0)