-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
enhancementNew feature or requestNew feature or request
Milestone
Description
Currently using a hardcoded approach. Worked well in #37 but would be useful to abstract this a little, and put in place two or three template ideas.
- official docs (with some automatic refreshing?)
- product release campaign
- tech blog cross-posting
import { Template } from '@/types/templates';
export function useTemplates() {
// In the future, this could fetch available templates from an API
const templates = [
{
id: 'bebop-docs-v1',
type: 'official-docs',
name: 'Official Bebop Documentation',
description: 'Getting started guides and feature documentation',
details: [
'A collection of getting started guides',
'Documentation for all Bebop features',
'Examples of best practices'
]
}
];
return { templates };
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request