-
Notifications
You must be signed in to change notification settings - Fork 1
392 futher improve website #395
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
62262a5
chore: add changeset
openscript a95819e
chore: update poster and video assets
yixuanwu4 919a330
chore: move assets from public to src, and import them into astro files
yixuanwu4 bcb9329
chore: refactor head component to add site metadata
yixuanwu4 44dcfce
chore: update nginx configuration in apps/website/.docker/nginx.conf
yixuanwu4 6a0b6b0
chore: fix trailing space in meta description for Head component
yixuanwu4 2e3c201
chore: enhance Spotlight section styles for better responsiveness and…
yixuanwu4 fa3a010
chore: enhance spotlight styling
openscript ce07fdc
chore: add multiple favicon sizes for improved browser compatibility
yixuanwu4 b2a3831
chore: add keywords meta tag for improved SEO
yixuanwu4 c7a4661
chore: correct casing of Openscript logo import in Footer section
yixuanwu4 8d2c48e
chore: reorganize video assets and update imports in Spotlight section
yixuanwu4 754690b
chore: remove unnecessary class from Quassel logo image in Header sec…
yixuanwu4 d72e135
chore: add Open Graph meta tags for improved social media sharing
yixuanwu4 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| "@quassel/website": patch | ||
| --- | ||
|
|
||
| Improve website |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file renamed
BIN
+35.8 MB
apps/website/src/assets/video/quassel.mp4 → apps/website/src/assets/videos/quassel.mp4
Binary file not shown.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,34 @@ | ||
| --- | ||
| const { title } = Astro.props; | ||
| const ogImageUrl = "/opengraph.png"; | ||
| --- | ||
|
|
||
| <head> | ||
| <meta charset="utf-8" /> | ||
| <link rel="icon" href="/favicon.ico" type="image/x-icon" sizes="any" /> | ||
| <link rel="icon" href="/favicon-16x16.png" type="image/png" sizes="16x16" /> | ||
| <link rel="icon" href="/favicon-32x32.png" type="image/png" sizes="32x32" /> | ||
| <link rel="icon" href="/favicon-48x48.png" type="image/png" sizes="48x48" /> | ||
| <link rel="icon" href="/favicon-64x64.png" type="image/png" sizes="64x64" /> | ||
| <link rel="icon" href="/favicon-96x96.png" type="image/png" sizes="96x96" /> | ||
| <link rel="icon" href="/android-chrome-192x192.png" type="image/png" sizes="192x192" /> | ||
| <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:locale" content="en_US" /> | ||
| <meta property="og:type" content="website" /> | ||
| <meta property="og:url" content="https://www.quassel.ch/" /> | ||
| <meta property="og:title" content={title} /> | ||
| <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. " | ||
| /> | ||
| <meta property="og:image" content={ogImageUrl} /> | ||
| <meta property="og:image:alt" content="Quassel Application Display" /> | ||
| <meta | ||
| name="keywords" | ||
| content="Quassel, children, calendar-like interface, language, langauge exposure, web application, periods of life, data entry personnel, UZH, openscript, open source" | ||
| /> | ||
| </head> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.