From 209114a3947f0a8e35e5bb42296c5576e086ad40 Mon Sep 17 00:00:00 2001 From: vchikalkin Date: Tue, 11 Feb 2025 13:34:18 +0300 Subject: [PATCH] move profile components from sub folder --- apps/web/components/profile/cards/index.ts | 3 --- .../components/profile/{cards => }/components/card-header.tsx | 0 .../profile/{cards => }/components/checkbox-field.tsx | 0 apps/web/components/profile/{cards => }/components/index.ts | 0 .../components/profile/{cards => }/components/link-button.tsx | 0 .../components/profile/{cards => }/components/text-field.tsx | 0 apps/web/components/profile/{cards => }/data-card.tsx | 0 apps/web/components/profile/index.ts | 4 +++- apps/web/components/profile/{cards => }/links-card.tsx | 0 apps/web/components/profile/{cards => }/person-card.tsx | 0 10 files changed, 3 insertions(+), 4 deletions(-) delete mode 100644 apps/web/components/profile/cards/index.ts rename apps/web/components/profile/{cards => }/components/card-header.tsx (100%) rename apps/web/components/profile/{cards => }/components/checkbox-field.tsx (100%) rename apps/web/components/profile/{cards => }/components/index.ts (100%) rename apps/web/components/profile/{cards => }/components/link-button.tsx (100%) rename apps/web/components/profile/{cards => }/components/text-field.tsx (100%) rename apps/web/components/profile/{cards => }/data-card.tsx (100%) rename apps/web/components/profile/{cards => }/links-card.tsx (100%) rename apps/web/components/profile/{cards => }/person-card.tsx (100%) diff --git a/apps/web/components/profile/cards/index.ts b/apps/web/components/profile/cards/index.ts deleted file mode 100644 index fd1dd09..0000000 --- a/apps/web/components/profile/cards/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -export * from './data-card'; -export * from './links-card'; -export * from './person-card'; diff --git a/apps/web/components/profile/cards/components/card-header.tsx b/apps/web/components/profile/components/card-header.tsx similarity index 100% rename from apps/web/components/profile/cards/components/card-header.tsx rename to apps/web/components/profile/components/card-header.tsx diff --git a/apps/web/components/profile/cards/components/checkbox-field.tsx b/apps/web/components/profile/components/checkbox-field.tsx similarity index 100% rename from apps/web/components/profile/cards/components/checkbox-field.tsx rename to apps/web/components/profile/components/checkbox-field.tsx diff --git a/apps/web/components/profile/cards/components/index.ts b/apps/web/components/profile/components/index.ts similarity index 100% rename from apps/web/components/profile/cards/components/index.ts rename to apps/web/components/profile/components/index.ts diff --git a/apps/web/components/profile/cards/components/link-button.tsx b/apps/web/components/profile/components/link-button.tsx similarity index 100% rename from apps/web/components/profile/cards/components/link-button.tsx rename to apps/web/components/profile/components/link-button.tsx diff --git a/apps/web/components/profile/cards/components/text-field.tsx b/apps/web/components/profile/components/text-field.tsx similarity index 100% rename from apps/web/components/profile/cards/components/text-field.tsx rename to apps/web/components/profile/components/text-field.tsx diff --git a/apps/web/components/profile/cards/data-card.tsx b/apps/web/components/profile/data-card.tsx similarity index 100% rename from apps/web/components/profile/cards/data-card.tsx rename to apps/web/components/profile/data-card.tsx diff --git a/apps/web/components/profile/index.ts b/apps/web/components/profile/index.ts index 870e357..fd1dd09 100644 --- a/apps/web/components/profile/index.ts +++ b/apps/web/components/profile/index.ts @@ -1 +1,3 @@ -export * from './cards'; +export * from './data-card'; +export * from './links-card'; +export * from './person-card'; diff --git a/apps/web/components/profile/cards/links-card.tsx b/apps/web/components/profile/links-card.tsx similarity index 100% rename from apps/web/components/profile/cards/links-card.tsx rename to apps/web/components/profile/links-card.tsx diff --git a/apps/web/components/profile/cards/person-card.tsx b/apps/web/components/profile/person-card.tsx similarity index 100% rename from apps/web/components/profile/cards/person-card.tsx rename to apps/web/components/profile/person-card.tsx