From 8699a497cca3e11826423ab95c9ac1fa53a43aa8 Mon Sep 17 00:00:00 2001 From: Schneider Roland Date: Thu, 9 Jan 2025 21:22:06 +0100 Subject: [PATCH] refactoring , add YogaImageComponent, bcryptjs --- yoga-app/src/app/api/web-client/types.ts | 17 +++++++++++++++++ yoga-app/src/app/api/web-client/web-client.ts | 15 +++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 yoga-app/src/app/api/web-client/types.ts create mode 100644 yoga-app/src/app/api/web-client/web-client.ts diff --git a/yoga-app/src/app/api/web-client/types.ts b/yoga-app/src/app/api/web-client/types.ts new file mode 100644 index 0000000..cbd580d --- /dev/null +++ b/yoga-app/src/app/api/web-client/types.ts @@ -0,0 +1,17 @@ + +export interface HomePageData{ + +} + + +export interface OurServiceData{ + +} + +export interface AboutUsData{ + +} + +export interface OurSpecialitiesData{ + +} \ No newline at end of file diff --git a/yoga-app/src/app/api/web-client/web-client.ts b/yoga-app/src/app/api/web-client/web-client.ts new file mode 100644 index 0000000..1ba5dc8 --- /dev/null +++ b/yoga-app/src/app/api/web-client/web-client.ts @@ -0,0 +1,15 @@ + + + +class WebClient { + + public getHomePage(){ + + } + +} + + +const client = new WebClient(); + +export default client; \ No newline at end of file