Initial commit

This commit is contained in:
meisterbusiness
2026-02-24 21:21:39 +01:00
parent 67a58bea3a
commit 132945f4c6
236 changed files with 14774 additions and 5865 deletions

22
types.ts Normal file
View 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;
}