fix: correct title and description for cv
This commit is contained in:
parent
3e9e110cf5
commit
4ef95c8cf8
1 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
import Layout from "@layouts/Layout.astro";
|
||||
import { SITE, HOME } from "@consts";
|
||||
import { SITE, CV } from "@consts";
|
||||
import { Image } from "astro:assets";
|
||||
import { Icon } from "astro-icon/components";
|
||||
import Link from "@components/Link.astro";
|
||||
|
@ -107,7 +107,7 @@ const education = [
|
|||
const sortedEducation = [...education].sort((a, b) => a.id - b.id);
|
||||
---
|
||||
|
||||
<Layout title={HOME.TITLE} description={HOME.DESCRIPTION}>
|
||||
<Layout title={CV.TITLE} description={CV.DESCRIPTION}>
|
||||
<div class="animate-reveal flex items-center justify-between opacity-0">
|
||||
<div class="flex-1 space-y-1.5">
|
||||
<h1 class="text-2xl font-bold">{SITE.AUTHOR}</h1><p
|
||||
|
|
Loading…
Add table
Reference in a new issue