Skip to content

Commit

Permalink
feature: update resume
Browse files Browse the repository at this point in the history
  • Loading branch information
ParzivalEugene committed Oct 31, 2024
1 parent de89705 commit c173a52
Show file tree
Hide file tree
Showing 8 changed files with 37 additions and 94 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,7 @@ jobs:
with:
host: ${{ secrets.SERVER_HOST }}
username: ${{ secrets.SERVER_USERNAME }}
password: ${{ secrets.SERVER_PASSWORD }}
key: ${{ secrets.SERVER_SSH_KEY }}
port: ${{ secrets.SERVER_PORT }}
script: |
docker-compose down links
docker-compose pull
Expand Down
81 changes: 0 additions & 81 deletions actions/getSpotifyInfo.ts

This file was deleted.

17 changes: 12 additions & 5 deletions components/resume-card.tsx
Original file line number Diff line number Diff line change
@@ -1,27 +1,34 @@
import { cn } from "@/lib/utils";
import { FileTextIcon } from "lucide-react";
import Link from "next/link";
import { buttonVariants } from "./ui/button";
import { Card, CardDescription, CardFooter, CardHeader } from "./ui/card";
import Image from "next/image";

export const ResumeCard = async () => {
return (
<Link
href="https://michkoff.com/resume-michkov-evgeny.pdf"
href="https://michkoff.com/Резюме_Мичков_Евгений_Владимирович.pdf"
download
className={cn(
buttonVariants({ variant: "outline" }),
"rounded-3xl relative flex flex-col h-auto items-start justify-start p-0 whitespace-normal transition-all ease duration-300 hover:shadow-2xl min-h-[156px] hover:bg-[#140C0C] hover:shadow-[#E24329]/40 resume"
"rounded-3xl relative flex flex-col h-auto items-start justify-start p-0 whitespace-normal transition-all ease duration-300 hover:shadow-2xl min-h-[156px] hover:bg-[#1E080D] hover:shadow-[#e1011c]/40 resume"
)}
>
<CardHeader className="p-4 lg:p-6 lg:pb-3">
<Card className="w-[40px] h-[40px] rounded-xl flex items-center justify-center">
<FileTextIcon className="w-5 h-5" />
<Image
src="/logos/hh.png"
alt="icon"
width={400}
height={400}
className="w-[40px] h-[40px] rounded-xl bg-[#e1011c]"
/>
</Card>
</CardHeader>
<div className="px-4 lg:pb-2 lg:px-6 flex flex-col items-start">
<CardDescription className="w-fit text-start">
Helios CTO<br />
Backend at LPII
<br />
2+ years of work
</CardDescription>
</div>
Expand Down
11 changes: 7 additions & 4 deletions components/spotify-card.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
import { GetSpotifyInfo, getSpotifyInfo } from "@/actions/getSpotifyInfo";
import SpotifyLogo from "@/public/logos/spotify.png";
import Image from "next/image";
import Link from "next/link";
import { Badge } from "./ui/badge";
import { CardDescription } from "./ui/card";

export const SpotifyCard = async () => {
const { title, songs, cover, link } =
(await getSpotifyInfo()) as GetSpotifyInfo;
const { title, songs, cover, link } = {
title: "Industrial",
songs: 94,
cover: "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000d72c357cb666cb5280bf2460b3df",
link: "https://open.spotify.com/playlist/0GaizFIurafzHZtUTcWGVv",
};

return (
<Link
Expand Down Expand Up @@ -36,4 +39,4 @@ export const SpotifyCard = async () => {
/>
</Link>
);
};
};
1 change: 0 additions & 1 deletion data/constants.ts

This file was deleted.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "links",
"version": "0.4.8",
"version": "0.4.10",
"private": true,
"scripts": {
"dev": "next dev",
Expand All @@ -19,6 +19,7 @@
"mongoose": "^8.2.0",
"next": "14.2.6",
"next-themes": "^0.3.0",
"nextjs-google-analytics": "^2.3.7",
"react": "18.3",
"react-dom": "18.3",
"sharp": "^0.33.5",
Expand Down
16 changes: 16 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added public/logos/hh.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit c173a52

Please sign in to comment.