Skip to content

Commit

Permalink
feat: add CV button
Browse files Browse the repository at this point in the history
  • Loading branch information
NedcloarBR committed Jan 12, 2025
1 parent c9526dd commit 36dd8f3
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 5 deletions.
Binary file added public/CV-MiguelAlexandreUhlein.pdf
Binary file not shown.
42 changes: 42 additions & 0 deletions public/icons/Curriculum.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 15 additions & 5 deletions src/components/about.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ import { Button } from "@/components/ui";
import { useState, useRef, useEffect } from "react";
import { HeaderAnchor } from "./header/header-anchor";
import { motion } from "framer-motion";
import { Icon } from "./icon";
import { Mail } from "lucide-react"

export function About() {
const t = useTranslations("About");
Expand All @@ -25,11 +27,19 @@ export function About() {
{t("Title")}
</div>
<div className="-mb-16 flex overflow-wrap break-word">
<img
src="PPF.jpeg"
alt="Miguel Alexandre Uhlein PPF"
className="size-80 mt-2 mr-8 inline-block rounded-xl"
/>
<div className="flex-col flex gap-4">
<img
src="PPF.jpeg"
alt="Miguel Alexandre Uhlein PPF"
className="size-80 mt-2 mr-8 inline-block rounded-xl"
/>
<div className="flex">
<Button variant="ghost" onClick={() => window.open("CV-MiguelAlexandreUhlein.pdf", "_blank")}>
<Icon name="Curriculum" className="size-12"/>
</Button>
<Mail className="size-12 cursor-pointer" onClick={() => document.getElementById("contact")?.scrollIntoView({ behavior: "smooth", block: "start" })}/>
</div>
</div>
<div className="mt-8 max-w-xl">
<motion.div
className="overflow-hidden"
Expand Down

0 comments on commit 36dd8f3

Please sign in to comment.