Skip to content

Commit 2ef7d47

Browse files
committed
chagned links & text
1 parent e592fa8 commit 2ef7d47

File tree

5 files changed

+16
-13
lines changed

5 files changed

+16
-13
lines changed

src/components/ProjectItem.astro

+2-2
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,11 @@ const { title, tools, sourse, href } = Astro.props;
7575
color: #ffffff88;
7676
}
7777

78-
/* .links {
78+
.links {
7979
display: flex;
8080
align-items: center;
8181
gap: 1rem;
82-
} */
82+
}
8383
.sourse-code {
8484
text-decoration: none;
8585
display: flex;

src/db/db.ts

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,35 @@
1-
interface IProject {
1+
interface CProject {
22
title: string;
33
tools: string;
44
sourse: string;
55
href: string;
66
}
7-
interface selectedProject {
7+
interface SProject {
88
title: string;
99
tools: string;
1010
sourse: string;
1111
href: string;
1212
}
1313

14-
export const currentProjects: IProject[] = [
14+
export const currentProjects: CProject[] = [
1515
{
1616
title: "Movie app",
17-
tools: "TypeScript, React.js, React-Query",
17+
tools: "TypeScript, React.js, React-Query (Tanstack)",
1818
sourse: "https://github.com/ikromwin/movie-app",
1919
href: "movie-app025.vercel.app",
2020
},
2121
];
2222

23-
export const selectedProjects: selectedProject[] = [
23+
export const selectedProjects: SProject[] = [
2424
{
2525
title: "Financial Sheet",
2626
tools: "JavaScript, React.js",
2727
sourse: "https://github.com/uikromm/financial-sheet",
2828
href: "",
2929
},
3030
{
31-
title: "f-plus audit",
32-
tools: "Next.js, TypeScript, Sanity studio (CRM) and SEO optimized",
31+
title: "F-plus audit",
32+
tools: "Next.js, TypeScript, Sanity and SEO optimized",
3333
sourse: "",
3434
href: "https://www.f-plusaudit.uz/",
3535
},

src/db/msg.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ export const msgs: Imsgs = {
2020
]
2121
}
2222

23-
export const CV_LINK: string = "https://drive.google.com/file/d/16qib_dAgAdx-MSgPudHt_3FLtSuJ0AMv/view?usp=sharing";
23+
export const KEY_LINK: string = "https://drive.google.com/file/d/12uqO45b4jDQeMvyhjXND9VYrsUadQbBT/view?usp=sharing";

src/layouts/Layout.astro

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const { title } = Astro.props;
4848
}
4949

5050
.main-content {
51-
animation: animate 0.5s ease-out;
51+
animation: animate 0.8s ease-out;
5252
}
5353

5454
@keyframes animate {

src/pages/index.astro

+5-2
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
import Layout from "../layouts/Layout.astro";
33
import ProjectItem from "../components/ProjectItem.astro";
44
import { currentProjects, selectedProjects } from "../db/db";
5-
import { CV_LINK, msgs } from "../db/msg";
5+
import { KEY_LINK, msgs } from "../db/msg";
66
---
77

88
<Layout title="Ikrom's Portfolio">
99
<main class="main-content">
1010
<div class="cv-link">
11-
<a href={CV_LINK}>
11+
<a href={KEY_LINK}>
1212
{msgs.cv_txt}
1313
</a>
1414
</div>
@@ -91,7 +91,10 @@ import { CV_LINK, msgs } from "../db/msg";
9191
font-size: 24px;
9292
margin-top: 40px;
9393
opacity: 0.9;
94+
font-weight: bold;
95+
position: relative;
9496
}
97+
9598
hr {
9699
opacity: 0.15;
97100
}

0 commit comments

Comments
 (0)