initial commit

This commit is contained in:
2025-02-28 21:42:48 +01:00
commit ed8d117bd3
34 changed files with 7669 additions and 0 deletions

30
astro.config.mjs Normal file
View File

@@ -0,0 +1,30 @@
// @ts-check
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
// https://astro.build/config
export default defineConfig({
integrations: [
starlight({
title: 'Pet Activity Monitor',
social: {
"github": 'https://avoid.sh/PetActivityMonitor',
},
sidebar: [
{
label: 'Overview',
autogenerate: { directory: '0_overview' },
},
{
label: 'Record App',
autogenerate: { directory: '1_record_app' },
},
{
label: 'Analysis App',
autogenerate: { directory: '2_analysis' },
},
],
}),
],
});