diff --git a/src/layouts/CVBase.astro b/src/layouts/CVBase.astro new file mode 100644 index 0000000..0523b10 --- /dev/null +++ b/src/layouts/CVBase.astro @@ -0,0 +1,17 @@ +--- +const { title } = Astro.props; +--- + + + + + + + {title} + + + + + + + diff --git a/src/pages/cv/index.astro b/src/pages/cv/index.astro index 7b467a7..f21f87b 100644 --- a/src/pages/cv/index.astro +++ b/src/pages/cv/index.astro @@ -1,8 +1,8 @@ --- -import Base from '../../layouts/Base.astro'; +import CVBase from '../../layouts/CVBase.astro'; --- - +