Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/npm_and_yarn/astrojs/node-8.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
brandstetterm authored Jan 15, 2025
2 parents 3dde9e2 + 6fc5eb1 commit f133ac7
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: CI

on: [push]
on: [push, workflow_dispatch]

env:
NODE_VERSION: 18
Expand Down Expand Up @@ -74,4 +74,4 @@ jobs:
build-args: |
DIRECTUS_URL=${{ secrets.DIRECTUS_URL }}
DIRECTUS_TOKEN=${{ secrets.DIRECTUS_TOKEN }}
PUBLIC_SCRUMLR_SERVER_URL="https://development.scrumlr.fra.ics.inovex.io/api"
PUBLIC_SCRUMLR_SERVER_URL="https://development.scrumlr.fra.ics.inovex.io/api"
2 changes: 1 addition & 1 deletion src/components/Footer/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const content = await getTranslatedContent("Footer", lang);
</li>
<li>
<a
href="https://www.linkedin.com/company/inovex/"
href="https://www.linkedin.com/showcase/scrumlr/"
target="_blank"
aria-label="LinkedIn"
>
Expand Down
22 changes: 18 additions & 4 deletions src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,29 @@ const lang = getLangFromUrl(Astro.url);
<html lang={lang}>
<head>
<meta charset="UTF-8" />
<meta name="description" content="Open source online retrospective & collaboration tool - fast onboarding, jump right into a session with your team" />
<meta
name="description"
content="Open source online retrospective & collaboration tool - fast onboarding, jump right into a session with your team"
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1 viewport-fit=cover"
/>
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="generator" content={Astro.generator} />
<title>{title}</title>
<script defer data-domain="scrumlr.io" src="https://analytics.prod.scrumlr.fra.ics.inovex.io/js/script.js"></script>
<script type="text/javascript">
(function(c,l,a,r,i,t,y){
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
})(window, document, "clarity", "script", "pffqg7itv6");
</script>
<script
defer
data-domain="scrumlr.io"
src="https://inolytics.inovex-gpt.fra.ics.inovex.io/js/script.js"
></script>
</head>
<body>
<div class="body_wrapper">
Expand Down Expand Up @@ -79,8 +93,8 @@ const lang = getLangFromUrl(Astro.url);

--darkmode-shadow: 0 2px 32px -12px #0f131b;

--light-blue: #E4E8F6;
--dark-blue-4: #5A647D;
--light-blue: #e4e8f6;
--dark-blue-4: #5a647d;

--light-grey-3: #edeff2;
--dark-grey: #939daa;
Expand Down
2 changes: 1 addition & 1 deletion src/pages/de/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import Feedback from "@views/Feedback/Feedback.astro";
import AboutUs from "@views/AboutUs/AboutUs.astro";
---

<Layout title="scrumlr.io - Online collaboration" >
<Layout title="scrumlr.io – Mühelose Online-Retrospektiven für agile Teams" >
<Hero />
<Choices />
<Uniqueness />
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import Feedback from "@views/Feedback/Feedback.astro";
import AboutUs from "@views/AboutUs/AboutUs.astro";
---

<Layout title="scrumlr.io - Online collaboration" >
<Layout title="scrumlr.io – Effortless Online Retrospectives for Agile Teams" >
<Hero />
<Choices />
<Uniqueness />
Expand Down

0 comments on commit f133ac7

Please sign in to comment.