Skip to content
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

Add wand emoji in header #20

Merged
merged 1 commit into from
Jan 18, 2024
Merged
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
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,
}),
],
});
Loading