diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2024-01-25 18:17:05 +0000 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2024-01-25 18:17:05 +0000 |
| commit | 162e303beeb5f2987852b543805fb6243a4ae725 (patch) | |
| tree | 0ab344aff25f29ace760bf4229b46d7a236dc354 /src/pages | |
| parent | 5542c18af3cebe63bcbd5fd6d54625af3ca4f2fe (diff) | |
| download | personal-website-162e303beeb5f2987852b543805fb6243a4ae725.tar.gz personal-website-162e303beeb5f2987852b543805fb6243a4ae725.tar.bz2 personal-website-162e303beeb5f2987852b543805fb6243a4ae725.zip | |
Moved json files into a dedicated folder
Diffstat (limited to 'src/pages')
| -rw-r--r-- | src/pages/contacts.astro | 2 | ||||
| -rw-r--r-- | src/pages/projects.astro | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/pages/contacts.astro b/src/pages/contacts.astro index 5123bed..d483f81 100644 --- a/src/pages/contacts.astro +++ b/src/pages/contacts.astro @@ -1,7 +1,7 @@ --- import Page from '../layouts/Page.astro' import { Icon } from 'astro-icon/components'; -import contacts from "../components/contacts.json"; +import contacts from "../data/contacts.json"; --- <Page title="Contacts" description="Follow me on other platforms"> <main> diff --git a/src/pages/projects.astro b/src/pages/projects.astro index 248534a..1613172 100644 --- a/src/pages/projects.astro +++ b/src/pages/projects.astro @@ -1,6 +1,6 @@ --- import Page from "../layouts/Page.astro"; -import projects from "../components/projects.json"; +import projects from "../data/projects.json"; --- <Page title="Projects" description="Things that I have been working on in the past, and present"> <main> |
