diff --git a/.gitea/build.yml b/.gitea/build.yml new file mode 100644 index 0000000..d3bac37 --- /dev/null +++ b/.gitea/build.yml @@ -0,0 +1,21 @@ +name: Gitea Actions Demo +run-name: ${{ gitea.actor }} is testing out Gitea Actions +on: [push] + +jobs: + Explore-Gitea-Actions: + runs-on: ubuntu-latest + steps: + - run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event." + - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!" + - run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}." + - name: Check out repository code + uses: actions/checkout@v4 + - run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner." + - run: echo "🖥️ The workflow is now ready to test your code on the runner." + - name: List files in the repository + run: | + ls ${{ gitea.workspace }} + - run: echo "🍏 This job's status is ${{ job.status }}." + - run: cd banquise_website + - run: npm run build diff --git a/banquise-website/src/App.tsx b/banquise-website/src/App.tsx index 1603d7c..ccb4eaa 100644 --- a/banquise-website/src/App.tsx +++ b/banquise-website/src/App.tsx @@ -114,7 +114,7 @@ const services = [ { name: "Password change", url: URLS.services.ssp, - image: "/path/to/ssp-image.jpg", + image: "/path/to/mails-image.jpg", icon: "📧", description: "Service de messagerie électronique professionnel avec interface web moderne. Bénéficiez d'une adresse email personnalisée @la-banquise.fr avec toutes les fonctionnalités avancées.", features: [ @@ -122,7 +122,7 @@ const services = [ ] }, { - name: "OpenCloud", + name: "Opencloud", url: URLS.services.opencloud, image: "/path/to/opencloud-image.jpg", icon: "☁️", diff --git a/banquise-website/src/components/sections/ServicesSection.tsx b/banquise-website/src/components/sections/ServicesSection.tsx index ad58cef..78db14f 100644 --- a/banquise-website/src/components/sections/ServicesSection.tsx +++ b/banquise-website/src/components/sections/ServicesSection.tsx @@ -13,6 +13,7 @@ interface Service { // Define interface directly in the component file interface ServicesSectionProps { services: Service[]; + onServiceClick: (service: Service) => void; } diff --git a/banquise-website/src/config/constants.ts b/banquise-website/src/config/constants.ts index a09b7a1..f415022 100644 --- a/banquise-website/src/config/constants.ts +++ b/banquise-website/src/config/constants.ts @@ -7,8 +7,8 @@ export const URLS = { pelican: "https://pelican.la-banquise.fr", intra: "https://intra.la-banquise.fr", mails: "https://mails.la-banquise.fr", + ssp: "https://ssp.la-banquise.fr", opencloud: "https://opencloud.la-banquise.fr" - ssp: "https://ssp.la-banquise.fr" }, social: { discord: "https://discord.gg/labanquise"