--- import { getCollection } from "astro:content"; import Layout from "@layouts/Layout.astro"; import Container from "@components/Container.astro"; import { CV } from "@consts"; import CVCard from "@components/CVCard.astro"; // TO Modify const works = [ {company:"Company A", time: "2022-Present", job_title: "Research Scientist", location: "London, UK", description: "Your Notes about the job"}, {company:"Company A", time: "2022-Present", job_title: "Research Scientist", location: "London, UK", description: "Your Notes about the job"}, ] const educations = [ {school:"University 1", time: "2022-Present", job_title: "BEng in Electronic Information Engineering", location: "London, UK", description: "Your Notes about the study"}, ] ---