From 43ae707d2b6dfcda68ed0a5eddb94239692ceded Mon Sep 17 00:00:00 2001 From: Hernan Diaz Date: Fri, 19 Jan 2024 16:41:37 +1100 Subject: [PATCH] Remove CV route. --- src/pages/cv/index.astro | 78 ---------------------------------------- 1 file changed, 78 deletions(-) delete mode 100644 src/pages/cv/index.astro diff --git a/src/pages/cv/index.astro b/src/pages/cv/index.astro deleted file mode 100644 index 74c29cb..0000000 --- a/src/pages/cv/index.astro +++ /dev/null @@ -1,78 +0,0 @@ ---- -import Layout from '@/layouts/Layout.astro' -import { info } from '@/content/info.secret' - -const { portfolio } = info ---- - - -
-
-

- {portfolio.name} -

-

{portfolio.jobDescription}

-
-
- {portfolio.about.map((paragraph) =>

{paragraph}

)} -
-
-
-
-

- Experience -

-
    - { - portfolio.experience.map((position) => ( -
  • -
    -
    -

    {position.name}

    -

    - {position.startDate} — {position.endDate} -

    -
    -

    {position.jobTitle}

    -

    {position.location}

    -

    {position.jobDescription}

    -
      - {position.achievements.map((item) => ( -
    • -

      {item}

      -
    • - ))} -
    -
    -
  • - )) - } -
-
- -
-

Education

-
    - { - portfolio.educationList.map((education) => ( -
  • -
    -
    -

    {education.name}

    -

    - {education.startDate} — {education.endDate} -

    -
    -

    {education.description}

    -

    {education.location}

    -
    -
  • - )) - } -
-
-
-
- @/content/info