add accordtion

This commit is contained in:
2025-04-21 13:51:29 -03:00
parent 4cd136ea04
commit 735e35ff71
17 changed files with 73 additions and 902 deletions

View File

@@ -1,8 +1,4 @@
---
export interface Props {
title: string
}
import '@fontsource/roboto'
import '~/styles/app.css'
import Logo from '~/components/logos/Eduseg.astro'
@@ -13,7 +9,6 @@ import { Icon } from 'astro-icon/components'
import { getCollection } from 'astro:content'
const courses = await getCollection('courses', ({ data }) => data.draft != true)
const { ...props } = Astro.props
const year = new Date().getFullYear()
---