Skip to content

Commit

Permalink
feat: add new favicons and removes dead links
Browse files Browse the repository at this point in the history
  • Loading branch information
sh3pik committed Oct 31, 2024
1 parent 47e621b commit fa05190
Show file tree
Hide file tree
Showing 7 changed files with 35 additions and 11 deletions.
33 changes: 29 additions & 4 deletions astro.config.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// @ts-check
import { defineConfig } from "astro/config"
import starlight from "@astrojs/starlight"
import { defineConfig } from "astro/config";
import starlight from "@astrojs/starlight";

// https://astro.build/config
export default defineConfig({
Expand All @@ -9,18 +9,43 @@ export default defineConfig({
integrations: [
starlight({
logo: {
src: "./src/assets/alumnium-icon.png",
src: "./public/favicon.svg",
alt: "Alumnium",
},
title: "Alumnium",
social: {
github: "https://github.com/alumnium-hq/alumnium",
},
favicon: "./public/favicon.svg",
head: [
{
tag: "link",
attrs: {
rel: "icon",
href: "/favicon.ico",
sizes: "32x32",
},
},
{
tag: "link",
attrs: {
rel: "icon",
href: "/favicon.svg",
type: "image/svg+xml",
},
},
{
tag: "link",
attrs: {
rel: "apple-touch-icon",
href: "/apple-touch-icon.png",
},
},
],
sidebar: [
{
label: "Guides",
items: [
// Each item here is one entry in the navigation menu.
{
label: "How to set up Alumnium in your tests",
slug: "guides/example",
Expand Down
Binary file added public/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon.ico
Binary file not shown.
1 change: 1 addition & 0 deletions public/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/assets/alumnium-icon.png
Binary file not shown.
1 change: 1 addition & 0 deletions src/assets/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 4 additions & 7 deletions src/content/docs/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,10 @@ template: splash
hero:
tagline: Pave the way towards AI-powered test automation!
image:
file: ../../assets/alumnium-icon.png
file: ../../assets/logo.svg
actions:
- text: Our blog
link: /blog
icon: right-arrow
- text: Read the docs
link: https://github.com/p0deje/alumnium/blob/main/README.md
link: https://github.com/alumnium-hq/alumnium/blob/main/README.md
icon: external
variant: minimal
---
Expand All @@ -27,7 +24,7 @@ import { Card, CardGrid } from "@astrojs/starlight/components";
</Card>
<Card title="Support for web" icon="pen">
Alumnium works together with [Selenium](https://www.selenium.dev/). Mobile
support is coming soon. Subscribe to [our blog](/blog) to get updates!
support is coming soon.
</Card>
<Card title="Control your test cases" icon="star">
Keep the control of your test cases, and leave interaction with the
Expand All @@ -42,6 +39,6 @@ import { Card, CardGrid } from "@astrojs/starlight/components";
Put here some GIF or text.
</Card>
<Card title="Learn more" icon="open-book">
Read more in [the Alumnium Docs](/docs).
Read more in [the Alumnium Docs](https://github.com/alumnium-hq/alumnium).
</Card>
</CardGrid>

0 comments on commit fa05190

Please sign in to comment.