Skip to content
Merged

Next #150

Show file tree
Hide file tree
Changes from all commits
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
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "accessible-astro-starter",
"description": "An Accessible Starter Theme for Astro including several accessibility features and tools to help you build faster.",
"version": "4.1.0",
"version": "4.1.1",
"author": "Incluud",
"license": "MIT",
"type": "module",
"homepage": "https://accessible-astro.netlify.app/",
"homepage": "https://accessible-astro-starter.incluud.dev/",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
Expand Down Expand Up @@ -60,6 +60,6 @@
},
"dependencies": {
"@tailwindcss/vite": "^4.1.7",
"accessible-astro-components": "^4.1.1"
"accessible-astro-components": "^4.1.2"
}
}
2 changes: 1 addition & 1 deletion src/components/Header.astro
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ import { Icon } from 'astro-icon/components'
<a href="https://accessible-astro.incluud.dev/">Docs </a>
</li>
<li class="menu-item type-icon animate-rotate">
<a href="https://github.com/markteekman/accessible-astro-starter">
<a href="https://github.com/incluud/accessible-astro-starter">
<Icon name="lucide:github" />
<span class="sr-only">Go to the GitHub page</span>
</a>
Expand Down
4 changes: 0 additions & 4 deletions src/components/SiteMeta.astro
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
---
import { ViewTransitions } from 'astro:transitions'

/**
* SiteMeta Component
*
Expand Down Expand Up @@ -50,5 +48,3 @@ let subtitle = 'Accessible Astro Starter'

<!-- page title -->
<title>{title} - {subtitle}</title>

<ViewTransitions />
8 changes: 6 additions & 2 deletions src/layouts/DefaultLayout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@ import '../assets/scss/index.scss'
import SiteMeta from '../components/SiteMeta.astro'
import Header from '../components/Header.astro'
import Footer from '../components/Footer.astro'
import { ClientRouter } from 'astro:transitions'

const {
title = 'Astro',
title = 'Accessible Astro',
description = 'A starter project with accessibility features using Astro static site builder. Contains accessible landmarks, skip links, a dark mode color scheme, better focus outline and keyboard menu navigation.',
url = Astro.site,
image = 'social-preview-image.png',
author = 'Mark Teekman',
author = 'Incluud',
} = Astro.props
---

Expand All @@ -24,6 +25,9 @@ const {
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />

<SiteMeta title={title} description={description.substring(0, 100)} url={url} image={image} author={author} />

<!-- Enable Astro View Transitions for all browsers -->
<ClientRouter />
</head>
<body>
<Header />
Expand Down