Skip to content

Commit

Permalink
Add wand emoji in header (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMightyPenguin authored Jan 18, 2024
1 parent 82b28a4 commit f4c272b
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 28 deletions.
5 changes: 5 additions & 0 deletions .changeset/shaggy-lies-allow.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@gql.tada/website': patch
---

Add Wand emoji next to gql.tada in website header
61 changes: 33 additions & 28 deletions website/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -11,58 +11,63 @@ export default defineConfig({
site: 'https://gql-tada.0no.co',
integrations: [
starlight({
title: 'gql.tada',
title: 'gql.tada 🪄',
description: 'Magical GraphQL query engine for TypeScript',
editLink: {
baseUrl: 'https://github.com/0no-co/gql.tada/edit/main/website/'
baseUrl: 'https://github.com/0no-co/gql.tada/edit/main/website/',
},
social: {
github: 'https://github.com/0no-co/gql.tada',
discord: 'https://urql.dev/discord'
discord: 'https://urql.dev/discord',
},
sidebar: [{
label: 'Get Started',
items: [{
label: 'Introduction',
link: '/'
}, {
label: 'Installation',
link: '/get-started/installation/'
}, {
label: 'Writing GraphQL',
link: '/get-started/writing-graphql/'
}
]
},
/*
sidebar: [
{
label: 'Get Started',
items: [
{
label: 'Introduction',
link: '/',
},
{
label: 'Installation',
link: '/get-started/installation/',
},
{
label: 'Writing GraphQL',
link: '/get-started/writing-graphql/',
},
],
},
/*
{
label: 'Guides',
autogenerate: { directory: 'guides' },
},
*/
{
label: 'Reference',
autogenerate: {
directory: 'reference'
}
}],
{
label: 'Reference',
autogenerate: {
directory: 'reference',
},
},
],
customCss: [
'@fontsource/inter/latin-400.css',
'@fontsource/inter/latin-500.css',
'@fontsource/inter/latin-600.css',
'./src/tailwind.css'
'./src/tailwind.css',
],
components: {
Head: './src/components/Head.astro',
},
expressiveCode: {
plugins: [pluginCollapsibleSections()],
themes: ['github-dark-dimmed', 'github-light'],
}
},
}),

tailwind({
applyBaseStyles: false
})
applyBaseStyles: false,
}),
],
});

0 comments on commit f4c272b

Please sign in to comment.