diff --git a/public/cv/en.pdf b/public/cv/en.pdf new file mode 100644 index 0000000..72f3ead Binary files /dev/null and b/public/cv/en.pdf differ diff --git a/public/cv/pt.pdf b/public/cv/pt.pdf new file mode 100644 index 0000000..b965589 Binary files /dev/null and b/public/cv/pt.pdf differ diff --git a/public/images/profile.png b/public/images/profile.png new file mode 100644 index 0000000..60f8ec0 Binary files /dev/null and b/public/images/profile.png differ diff --git a/src/app/i18n/locales/en.json b/src/app/i18n/locales/en.json index e1ccd33..34fd294 100644 --- a/src/app/i18n/locales/en.json +++ b/src/app/i18n/locales/en.json @@ -48,6 +48,9 @@ "seeMore": { "label": "See my full resume" }, + "pdfResume": { + "label": "/cv/en.pdf" + }, "summary": { "label": "Summary" }, diff --git a/src/app/i18n/locales/pt.json b/src/app/i18n/locales/pt.json index e8abbc9..552219e 100644 --- a/src/app/i18n/locales/pt.json +++ b/src/app/i18n/locales/pt.json @@ -48,6 +48,9 @@ "seeMore": { "label": "Veja meu currĂ­culo completo" }, + "pdfResume": { + "label": "/cv/pt.pdf" + }, "summary": { "label": "Resumo" }, diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8669f0c..697ef64 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -3,7 +3,6 @@ import { ThemeProvider } from "next-themes"; import { Roboto } from "next/font/google"; import "./globals.css"; -import profileImg from "./assets/profile.png"; const roboto = Roboto({ weight: ["400", "700"], subsets: ["latin"] }); @@ -17,13 +16,14 @@ export const metadata: Metadata = { openGraph: { type: "website", locale: "en_US", + alternateLocale: "pt_BR", url: "https://laerciorios.com", title: "Laercio Rios", siteName: "Laercio Rios", description: "Personal website of Laercio Rios, a fullstack developer", images: [ { - url: profileImg.src, + url: "/images/profile.png", width: 800, height: 800, alt: "Laercio Rios", diff --git a/src/app/page.tsx b/src/app/page.tsx index e66cdc6..5c066ac 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -25,6 +25,7 @@ import { presentations } from "./data/presentations"; import { projects } from "./data/projects"; import styles from "./page.module.css"; import { GITHUB_LINK, EMAIL_LINK, LINKEDIN_LINK } from "./utils/contrants"; +// import cvPtPdf from "../../public/cv/pt.pdf"; export default function Home() { const { t } = useTranslation(); @@ -132,12 +133,16 @@ export default function Home() { {t("pages.home.experience.title.label")} - {/* + {t("pages.home.experience.seeMore.label")} - */} +