Skip to content

Commit cc33c51

Browse files
committed
Update home page
1 parent b4bea30 commit cc33c51

File tree

1 file changed

+51
-44
lines changed

1 file changed

+51
-44
lines changed

src/app/page.tsx

Lines changed: 51 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import {
66
Card,
77
CardSection,
88
Container,
9+
Divider,
910
Grid,
1011
GridCol,
1112
Group,
@@ -16,9 +17,10 @@ import {
1617
Title,
1718
} from "@mantine/core";
1819
import classes from "./page.module.css";
19-
import { IconArrowUpRight } from "@tabler/icons-react";
20+
import { IconArrowRight, IconArrowUpRight } from "@tabler/icons-react";
2021
import SiteFooter from "@/_components/footer/Footer";
2122
import { BannerAnimation } from "@/_components/banner/BannerAnimation";
23+
import WorkSection from "@/_components/works/WorkSection";
2224

2325
export default function Home() {
2426
const images = [
@@ -67,20 +69,29 @@ export default function Home() {
6769
<br />
6870
<span
6971
style={{
70-
fontSize: 90,
72+
fontSize: 85,
7173
fontWeight: 900,
7274
letterSpacing: 1,
7375
}}
7476
>
75-
Building digital product with emphasis on{" "}
76-
<span
77-
style={{
78-
color:
79-
"light-dark(var(--mantine-color-gray-6), var(--mantine-color-dark-2))",
80-
}}
77+
Building the future with clean, efficient, and{" "}
78+
<Text
79+
variant="gradient"
80+
component="span"
81+
gradient={{ from: "green", to: "blue", deg: 90 }}
82+
fz={85}
83+
fw={900}
84+
style={
85+
{
86+
// background: "linear-gradient(45deg, red, blue)",
87+
// backgroundClip: "text",
88+
// color:
89+
// "light-dark(var(--mantine-color-bluegray-3), var(--mantine-color-dark-2))",
90+
}
91+
}
8192
>
82-
visual design.
83-
</span>
93+
scalable code.
94+
</Text>
8495
</span>
8596
</Title>
8697
<Space h={20} />
@@ -116,42 +127,38 @@ export default function Home() {
116127
</Group>
117128
</Container>
118129
<Space h={150} />
119-
<Box>
120-
<BannerAnimation images={images} speed={100000} />
121-
</Box>
130+
<Box>{/* <BannerAnimation images={images} speed={100000} /> */}</Box>
122131
<Space h={150} />
123132
<Container size="xl" pos="relative">
124-
<Box>
125-
<Text fz={40} fw={600}>
126-
Selected works
127-
</Text>
128-
<Space h={32} />
129-
<Grid>
130-
<GridCol span={6}>
131-
<Card withBorder shadow="sm" radius="md">
132-
<CardSection>
133-
<Box h={400} bg={"gray.2"}></Box>
134-
{/* <Image
135-
src={"/product-one.png"}
136-
alt="bbbbbb"
137-
width={500}
138-
height={300}
139-
/> */}
140-
</CardSection>
141-
<Group mt={16}>
142-
<Stack gap={5}>
143-
<Text fw={600} fz={16}>
144-
Bilify
145-
</Text>
146-
<Text fz={14} c={"gray"}>
147-
A digital invoice template for designers{" "}
148-
</Text>
149-
</Stack>
150-
</Group>
151-
</Card>
152-
</GridCol>
153-
</Grid>
154-
</Box>
133+
<Grid>
134+
<GridCol span={8}>
135+
<Title order={2} fz={65} fw={600}>
136+
Transforming ideas into elegant, functional digital solutions.
137+
</Title>
138+
</GridCol>
139+
<GridCol span={4}>
140+
<Space h={16} />
141+
<Text fz={18}>
142+
I'm a Full-Stack Software Developer living in Kabul 🇦🇫, and I
143+
focus on making digital experiences that are easy to use,
144+
enjoyable, and get the job done. I love tackling challenging
145+
problems and creating solutions that truly matter to people.
146+
</Text>
147+
<Space h={32} />
148+
<Button
149+
variant="default"
150+
// color="black"
151+
size="lg"
152+
radius="xl"
153+
rightSection={<IconArrowRight />}
154+
fz={16}
155+
>
156+
About Me
157+
</Button>
158+
</GridCol>
159+
</Grid>
160+
<Space h={150} />
161+
<WorkSection />
155162
</Container>
156163
<SiteFooter />
157164
</>

0 commit comments

Comments
 (0)