diff --git a/README.md b/README.md index 917057c..2882302 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,7 @@ Now uses Astro instead of the old static website ! - `components/` - `layouts/` - `pages/` +- `scripts/` - `data/` - Contains the configs to generate the website, each as a JSON file (contains cards, site name, etc.) - `styles` - default CSS style sheets and custom themes diff --git a/src/pages/index.astro b/src/pages/index.astro index 65df85e..9bce013 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -1,6 +1,7 @@ --- import "../styles/common.css"; -import data from "../data/op-public.json"; +import "../styles/mobile.css"; +import data from "../data/content.json"; const { cards, website_title, website_logo } = data; --- @@ -19,31 +20,28 @@ const { cards, website_title, website_logo } = data;
-