Initial commit
This commit is contained in:
22
types.ts
Normal file
22
types.ts
Normal file
@@ -0,0 +1,22 @@
|
||||
export enum Page {
|
||||
HOME = 'HOME',
|
||||
BOOK = 'BOOK',
|
||||
RETREAT = 'RETREAT',
|
||||
BLOG = 'BLOG',
|
||||
CONTACT = 'CONTACT',
|
||||
BLOG_POST = 'BLOG_POST',
|
||||
LOGIN = 'LOGIN',
|
||||
REGISTER = 'REGISTER',
|
||||
REGISTER_SUCCESS = 'REGISTER_SUCCESS',
|
||||
DASHBOARD = 'DASHBOARD',
|
||||
}
|
||||
|
||||
export interface BlogPost {
|
||||
id: string;
|
||||
title: string;
|
||||
category: string;
|
||||
date: string;
|
||||
readTime: string;
|
||||
image: string;
|
||||
excerpt: string;
|
||||
}
|
||||
Reference in New Issue
Block a user