---
import { Picture } from "astro:assets";
import { data } from "~/data/data";
const currentPath = Astro.url.pathname;
const { Content, ...profile } = data.profile;
const currentExperience = await data.experiences.getCurrent()
const links = {
'/': 'Posts',
'/about/': 'About',
}
---