diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/data/contacts.json (renamed from src/components/contacts.json) | 2 | ||||
| -rw-r--r-- | src/data/projects.json (renamed from src/components/projects.json) | 2 | ||||
| -rw-r--r-- | src/pages/contacts.astro | 2 | ||||
| -rw-r--r-- | src/pages/projects.astro | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/components/contacts.json b/src/data/contacts.json index fbad4c0..955514e 100644 --- a/src/components/contacts.json +++ b/src/data/contacts.json @@ -54,4 +54,4 @@ "url": "https://twitter.alee14.me", "mouseover": "yuck." } -] +]
\ No newline at end of file diff --git a/src/components/projects.json b/src/data/projects.json index 7da01c9..dc8bbbf 100644 --- a/src/components/projects.json +++ b/src/data/projects.json @@ -43,4 +43,4 @@ } ] } -] +]
\ No newline at end of file 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> |
