refactor: Improved CSS styles for a cohesive theme and better responsiveness

This commit is contained in:
duthaho
2026-04-24 21:08:02 +07:00
parent 8a433185b2
commit f74489b630
17 changed files with 340 additions and 466 deletions
+12 -5
View File
@@ -5,8 +5,7 @@ import tailwindcss from '@tailwindcss/vite';
// https://astro.build/config
export default defineConfig({
site: 'https://duthaho.github.io',
base: '/claudekit',
site: 'https://claudekit.duthaho.dev',
integrations: [
starlight({
title: 'Claude Kit',
@@ -21,10 +20,18 @@ export default defineConfig({
},
head: [
{
tag: 'meta',
tag: 'link',
attrs: { rel: 'preconnect', href: 'https://fonts.googleapis.com' },
},
{
tag: 'link',
attrs: { rel: 'preconnect', href: 'https://fonts.gstatic.com', crossorigin: '' },
},
{
tag: 'link',
attrs: {
property: 'og:image',
content: 'https://duthaho.github.io/claudekit/og-image.png',
rel: 'stylesheet',
href: 'https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap',
},
},
],