diff --git a/public/import-sample.json b/public/import-sample.json new file mode 100644 index 0000000..47009d5 --- /dev/null +++ b/public/import-sample.json @@ -0,0 +1,9 @@ +[ + { + "type": "Task or System (ONLY one)", + "title": "ActiveCollab Github Action", + "description": "This is your prompt content.", + "tags": "{These,Are,Tags}", + "notes": "This is your prompt description." + } +] diff --git a/src/components/SidebarAdd.astro b/src/components/SidebarAdd.astro index beb5d8b..b06ba31 100644 --- a/src/components/SidebarAdd.astro +++ b/src/components/SidebarAdd.astro @@ -1,5 +1,18 @@ --- // Sidebar.astro + +import { Code } from 'astro:components'; + +const code = `[ + { + "type": "System or Task (ONLY one)", + "title": "Example Prompt", + "description": "This is an example prompt.", + "tags": ["example", "test"], + "notes": "The prompt description." + } +] +`; ---