Skip to content

Commit 8701c24

Browse files
committed
updated landing page design
1 parent 57e711a commit 8701c24

22 files changed

+443
-265
lines changed

.changeset/metal-penguins-fail.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'mantine-analytics-dashboard': patch
3+
---
4+
5+
feat: updated landing page design

app/apps/chat/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ function Chat() {
9292
</>
9393
<Container fluid>
9494
<Stack>
95-
<PageHeader title="Settings" breadcrumbItems={items} />
95+
<PageHeader title="Chat" breadcrumbItems={items} />
9696
<Surface
9797
component={Paper}
9898
{...PAPER_PROPS}

app/page.module.css

Lines changed: 39 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,33 @@
4949
background-color: transparent;
5050
}
5151

52-
.image {
52+
.paperImage {
5353
height: 100%;
5454
background-color: transparent;
5555

56+
@mixin light {
57+
color: var(--mantine-color-black);
58+
}
59+
60+
@mixin dark {
61+
color: var(--mantine-color-white);
62+
}
63+
64+
@mixin hover {
65+
transition: all ease 200ms;
66+
67+
* {
68+
font-weight: 700;
69+
}
70+
}
71+
}
72+
73+
.image {
74+
transition: all ease 200ms;
75+
border-radius: var(--mantine-radius-default);
76+
5677
@mixin hover {
57-
box-shadow: var(--mantine-shadow-lg);
58-
transition: all ease 150ms;
59-
transform: scale(1.03);
78+
transform: scale(1.05);
6079
}
6180
}
6281

@@ -68,3 +87,19 @@
6887
background-color: transparent;
6988
text-align: center;
7089
}
90+
91+
.featureCard {
92+
background-color: transparent;
93+
}
94+
95+
.section {
96+
@mixin light {
97+
color: var(--mantine-color-black);
98+
background-color: var(--mantine-color-white);
99+
}
100+
101+
@mixin dark {
102+
color: var(--mantine-color-white);
103+
background-color: var(--mantine-color-dark-8);
104+
}
105+
}

0 commit comments

Comments
 (0)