feat: add madeira blog post upgrade astro

This commit is contained in:
2025-02-16 15:33:45 +01:00
parent c1fefe3f3f
commit b607cbeb2a
48 changed files with 2653 additions and 3235 deletions

View File

@@ -5,14 +5,7 @@ import Title from './Title.svelte';
import Description from './Description.svelte';
import ReadMoreButton from './ReadMoreButton.svelte';
const Card = {
...Wrapper,
Image,
Content,
Title,
Description,
ReadMoreButton
} as typeof Wrapper & {
const Card = Wrapper as typeof Wrapper & {
Image: typeof Image;
Content: typeof Content;
Title: typeof Title;
@@ -20,4 +13,10 @@ const Card = {
ReadMoreButton: typeof ReadMoreButton;
}
Card.Image = Image;
Card.Content = Content;
Card.Title = Title;
Card.Description = Description;
Card.ReadMoreButton = ReadMoreButton;
export { Card };