page.module.css
1.container {
2 display: flex;
3 min-height: 100vh;
4}
5
6.main {
7 flex: 1;
8 padding: 32px;
9}
10
11.title {
12 font-size: 28px;
13 font-weight: 700;
14 margin-bottom: 32px;
15 background: linear-gradient(to right, #a855f7, #06b6d4);
16 -webkit-background-clip: text;
17 background-clip: text;
18 color: transparent;
19}
20
21.grid {
22 display: grid;
23 grid-template-columns: repeat(3, 1fr);
24 gap: 24px;
25}