- Add clickable favorites counter with expandable panel - Render saved recipes list with remove button - Remove duplicate 'Another one' button (Generate already covers it) - Sync favorite button state when removing from panel
12 lines
241 B
TypeScript
12 lines
241 B
TypeScript
import { defineCollection } from "astro:content";
|
|
import { generatorSchema } from "@/lib/generator-schema";
|
|
|
|
const generators = defineCollection({
|
|
type: "data",
|
|
schema: generatorSchema,
|
|
});
|
|
|
|
export const collections = {
|
|
generators,
|
|
};
|