Skip to content

Commit 563fbbf

Browse files
committed
Add koor application page
1 parent 9c7e9e5 commit 563fbbf

File tree

3 files changed

+152
-0
lines changed

3 files changed

+152
-0
lines changed

public/images/koor-vertical.png

2.33 MB
Loading
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
"use client";
2+
3+
import { Box, GridCol, Image } from "@mantine/core";
4+
5+
export default function ImageView() {
6+
let deviceWidth = 1024;
7+
8+
if (typeof document !== "undefined") {
9+
deviceWidth = document.documentElement.clientWidth;
10+
}
11+
12+
return (
13+
<GridCol
14+
span={{ lg: 8 }}
15+
pos="relative"
16+
h={700}
17+
style={{ overflow: "hidden" }}
18+
>
19+
{deviceWidth > 768 && (
20+
<Box
21+
w={350}
22+
h={350}
23+
style={{
24+
right: 300,
25+
top: 200,
26+
position: "absolute",
27+
background:
28+
"linear-gradient(45deg, rgba(12, 0, 239, 0.66),rgba(0, 219, 239, 0.43))",
29+
filter: "blur(100px)",
30+
}}
31+
></Box>
32+
)}
33+
{deviceWidth > 768 ? (
34+
<Image
35+
src="/images/koor-vertical.png"
36+
alt="Koor Flutter Application UI Kit"
37+
style={{
38+
position: "relative",
39+
width: "100%",
40+
left: 120,
41+
top: -220,
42+
transform: "rotate(-10deg)",
43+
}}
44+
/>
45+
) : (
46+
<Image
47+
src="/images/koor-vertical.png"
48+
alt="Koor Flutter Application UI Kit"
49+
style={{
50+
position: "relative",
51+
width: "100%",
52+
}}
53+
/>
54+
)}
55+
</GridCol>
56+
);
57+
}
Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
import {
2+
Button,
3+
Container,
4+
Grid,
5+
GridCol,
6+
Group,
7+
Space,
8+
Text,
9+
Title,
10+
} from "@mantine/core";
11+
import { IconCheck } from "@tabler/icons-react";
12+
import Link from "next/link";
13+
import ImageView from "./components/ImageView";
14+
15+
export const metadata = {
16+
title: "Flutter Real Estate Application UI Kit",
17+
description:
18+
"A beautiful and modern real estate application UI Kit designed with Flutter. It includes 40+ screens and 100+ components, all built with clean code and easy to use.",
19+
};
20+
21+
export default function FlutterKoorPage() {
22+
return (
23+
<Container size="xl" pos="relative">
24+
<Space h={{ md: 100, base: 42 }} />
25+
<Grid>
26+
<GridCol span={{ lg: 4 }} pos="relative">
27+
<Title
28+
fz={{ xs: 52 }}
29+
fw={700}
30+
style={{
31+
wordSpacing: -1,
32+
}}
33+
c={"light-dark(var(--mantine-color-dark-9), white)"}
34+
>
35+
Flutter Real Estate Application UI Kit
36+
</Title>
37+
<Space h={20} />
38+
<Text
39+
fz={{ base: 22 }}
40+
c="light-dark(var(--mantine-color-gray-7), white)"
41+
>
42+
A beautiful and modern real estate application UI Kit designed with
43+
Flutter.
44+
</Text>
45+
<Space h={16} />
46+
<Group>
47+
<IconCheck color={"var(--mantine-color-green-5)"} />
48+
<Text fz={18}>40+ Screens</Text>
49+
</Group>
50+
<Space h={8} />
51+
<Group>
52+
<IconCheck color={"var(--mantine-color-green-5)"} />
53+
<Text fz={18}>100+ Components</Text>
54+
</Group>
55+
<Space h={8} />
56+
<Group>
57+
<IconCheck color={"var(--mantine-color-green-5)"} />
58+
<Text fz={18}>Clean Code</Text>
59+
</Group>
60+
<Space h={8} />
61+
<Group>
62+
<IconCheck color={"var(--mantine-color-green-5)"} />
63+
<Text fz={18}>Easy to Use</Text>
64+
</Group>
65+
<Space h={32} />
66+
<Group>
67+
<Button
68+
component={Link}
69+
href="https://instagram.com/theflutterlover"
70+
color="pink"
71+
radius="xl"
72+
size="lg"
73+
px={32}
74+
target="_blank"
75+
>
76+
Buy Now ($128)
77+
</Button>
78+
<Button
79+
component={Link}
80+
href="https://koor-ui-kit.vercel.app/"
81+
color="pink"
82+
variant="outline"
83+
radius="xl"
84+
size="lg"
85+
target="_blank"
86+
>
87+
Live Demo
88+
</Button>
89+
</Group>
90+
</GridCol>
91+
<ImageView />
92+
</Grid>
93+
</Container>
94+
);
95+
}

0 commit comments

Comments
 (0)