Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
91 changes: 91 additions & 0 deletions apps/website/public/quassel-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions apps/website/src/components/Head.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
const { title } = Astro.props;
---

<head>
<meta charset="utf-8" />
<link rel="icon" type="image/svg+xml" href="/quassel-icon.svg" />
<title>{title}</title>
<meta
name="description"
content="Quassel is a web-based application designed to aid researchers in collecting and analyzing data on children's language exposure. "
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.quassel.ch/" />
<meta
property="og:description"
content="Quassel (previously Language Exposure Questionnaire) is a web-based application designed to aid researchers in collecting and analyzing data on children's language exposure. "
/>
</head>
7 changes: 2 additions & 5 deletions apps/website/src/pages/index.astro
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
---
import Head from "../components/Head.astro";
import Site from "../layouts/Site.astro";
import Header from "../sections/Header.astro";
import Footer from "../sections/Footer.astro";
Expand All @@ -8,11 +9,7 @@ import Administration from "../sections/Administration.astro";
import About from "../sections/About.astro";
---

<head>
<meta charset="utf-8" />
<link rel="icon" type="image/svg+xml" href="/assets/quassel-icon.svg" />
<title>Quassel</title>
</head>
<Head title="Quassel" />
<Site>
<Header />
<main>
Expand Down