createSimplePage method
Creates a new simple page with the given data
Implementation
Future<SimplePage> createSimplePage(String title, String content) async {
final response = await _post('/api/simple-page', data: {
'title': title,
'content': content,
});
return SimplePage.fromJson(response.data);
}