Added Masthead, CMDPalette and PostHeader Components

This commit is contained in:
2026-02-27 14:41:49 +01:00
parent f6eb9dd7e1
commit ee099346db
136 changed files with 3736 additions and 244 deletions

14
markdoc.config.mjs Normal file
View File

@@ -0,0 +1,14 @@
import { defineMarkdocConfig, component } from '@astrojs/markdoc/config';
export default defineMarkdocConfig({
tags: {
ElementSymbol: {
render: component('./src/components/content/ElementSymbol.astro'),
attributes: {
element: { type: String },
size: { type: String },
color: { type: String },
},
},
},
});