From c7ccf8c5925f23a9e203edc8bf113f57033abd35 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Tue, 23 Jan 2024 15:34:51 +0000 Subject: Started contacts page --- src/pages/contacts.astro | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/pages/contacts.astro (limited to 'src/pages') diff --git a/src/pages/contacts.astro b/src/pages/contacts.astro new file mode 100644 index 0000000..e917a4d --- /dev/null +++ b/src/pages/contacts.astro @@ -0,0 +1,18 @@ +--- +import Page from '../layouts/Page.astro' +import { Icon } from 'astro-icon/components'; +import contacts from "../components/contacts.json"; + +//let icon = "fa6-brands:" + contacts[0].icon; +--- + + {contacts.map((contact)=> { + return ( + + ) + })} + \ No newline at end of file -- cgit v1.2.3