diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c9150d9a..172f3a5c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -13,16 +13,16 @@ cd ares ``` Then all the commands you'll need to start developing are here: -| Command | Action | +| Command | Action | | :--------------------- | :------------------------------------------------ | -| `npm install` | Install dependencies | -| `npm run dev` | Start local dev server at `localhost:4321` | -| `npm run build` | Build your production site to `./dist/` | -| `npm run preview` | Preview your build locally, before deploying | -| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` | -| `npm run astro --help` | Get help using the Astro CLI | -| `npm run format` | Format code with [Prettier](https://prettier.io/) | -| `npm run clean` | Remove `node_modules` and build output | +| `npm install` | Install dependencies | +| `npm run dev` | Start local dev server at `localhost:4321` | +| `npm run build` | Build your production site to `./dist/` | +| `npm run preview` | Preview your build locally, before deploying | +| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` | +| `npm run astro --help` | Get help using the Astro CLI | +| `npm run format` | Format code with [Prettier](https://prettier.io/) | +| `npm run clean` | Remove `node_modules` and build output | ## 🔼 Opening a PR @@ -38,10 +38,9 @@ git commit -m "Your commit message" git push ``` -Now all that is left to do is opening a Pull Request so your contribution can be published into production. If you don't know how to open a Pull Request, please refer to [this guide](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request). **_Don't forget to select the reviewers_**. +Now all that is left to do is opening a Pull Request so your contribution can be published into production. If you don't know how to open a Pull Request, please refer to [this guide](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request). **_Don't forget to select the reviewers_**. Once your PR is approved, your commit will be pushed to main and to production. Congratulations, you just contributed to the Ares repository. ### Note for those not a part of the CeSIUM team If you are not a member of our team on Github, then instead of creating a branch you need to fork this project. If you don't know how to do that, please [refer to this guide](https://docs.github.com/en/get-started/quickstart/fork-a-repo). - diff --git a/src/components/faqs.jsx b/src/components/faqs.jsx index 53525340..98baf46a 100644 --- a/src/components/faqs.jsx +++ b/src/components/faqs.jsx @@ -1,20 +1,25 @@ -import { Disclosure } from '@headlessui/react' -import { PlayIcon } from '@heroicons/react/24/solid' -import faqs from "~/data/faqs.json" +import { Disclosure } from "@headlessui/react"; +import { PlayIcon } from "@heroicons/react/24/solid"; +import faqs from "~/data/faqs.json"; export default function Faqs() { return (
-

Frequently asked questions

+

+ Frequently asked questions +

- Have a different question and can’t find the answer you’re looking for? - Reach out to our support team by sending us an email and we’ll get back to you as soon as we can. + > + sending us an email{" "} + + and we’ll get back to you as soon as we can.

@@ -27,18 +32,27 @@ export default function Faqs() {
{open ? ( - + ) : ( - + )}
- {faq.question} - + + {faq.question} +
-

{faq.answer}

+

+ {faq.answer} +

)} @@ -48,5 +62,5 @@ export default function Faqs() {
- ) + ); } diff --git a/src/components/showcase.astro b/src/components/gallery.astro similarity index 80% rename from src/components/showcase.astro rename to src/components/gallery.astro index 5566dcf5..4b1b9ae6 100644 --- a/src/components/showcase.astro +++ b/src/components/gallery.astro @@ -1,7 +1,7 @@ --- import ContentSection from "~/components/contentSection.astro"; -import ShowcaseCard from "~/components/showcaseCard.astro"; -import gallery from "~/data/gallery.json" +import ShowcaseCard from "~/components/galleryCard.astro"; +import gallery from "~/data/gallery.json"; --- diff --git a/src/components/showcaseCard.astro b/src/components/galleryCard.astro similarity index 100% rename from src/components/showcaseCard.astro rename to src/components/galleryCard.astro diff --git a/src/components/intro.astro b/src/components/intro.astro index 1c860204..d95d1f5d 100644 --- a/src/components/intro.astro +++ b/src/components/intro.astro @@ -38,7 +38,7 @@ import ContentSection from "~/components/contentSection.astro"; >

The second edition will be happening from

- 5th to 7th april + 5th to 7th april 2024

diff --git a/src/pages/index.astro b/src/pages/index.astro index 8400f808..c8d75380 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -1,10 +1,10 @@ --- import Intro from "~/components/intro.astro"; -import Showcase from "~/components/showcase.astro"; +import Gallery from "~/components/gallery.astro"; import IndexLayout from "~/layouts/indexLayout.astro"; --- - +