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