diff --git a/src/app/shared/components/share-with-team-page/share-with-team-page.component.html b/src/app/shared/components/share-with-team-page/share-with-team-page.component.html
new file mode 100644
index 0000000000000000000000000000000000000000..ef7ad779f5c86a451ed19184faf8ba1a4eb6697e
--- /dev/null
+++ b/src/app/shared/components/share-with-team-page/share-with-team-page.component.html
@@ -0,0 +1 @@
+<p>share-with-team-page works!</p>
diff --git a/src/app/shared/components/share-with-team-page/share-with-team-page.component.scss b/src/app/shared/components/share-with-team-page/share-with-team-page.component.scss
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/src/app/shared/components/share-with-team-page/share-with-team-page.component.spec.ts b/src/app/shared/components/share-with-team-page/share-with-team-page.component.spec.ts
new file mode 100644
index 0000000000000000000000000000000000000000..b60efe546c362ef22a1d2204778efc4bf6aad8a2
--- /dev/null
+++ b/src/app/shared/components/share-with-team-page/share-with-team-page.component.spec.ts
@@ -0,0 +1,23 @@
+import { ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { ShareWithTeamPageComponent } from './share-with-team-page.component';
+
+describe('ShareWithTeamPageComponent', () => {
+  let component: ShareWithTeamPageComponent;
+  let fixture: ComponentFixture<ShareWithTeamPageComponent>;
+
+  beforeEach(async () => {
+    await TestBed.configureTestingModule({
+      imports: [ShareWithTeamPageComponent]
+    })
+    .compileComponents();
+    
+    fixture = TestBed.createComponent(ShareWithTeamPageComponent);
+    component = fixture.componentInstance;
+    fixture.detectChanges();
+  });
+
+  it('should create', () => {
+    expect(component).toBeTruthy();
+  });
+});
diff --git a/src/app/shared/components/share-with-team-page/share-with-team-page.component.ts b/src/app/shared/components/share-with-team-page/share-with-team-page.component.ts
new file mode 100644
index 0000000000000000000000000000000000000000..8a871d03b142a9070590ff5f8947aeea22f271c6
--- /dev/null
+++ b/src/app/shared/components/share-with-team-page/share-with-team-page.component.ts
@@ -0,0 +1,13 @@
+import { Component } from '@angular/core';
+import { CommonModule } from '@angular/common';
+
+@Component({
+  selector: 'gp-share-with-team-page',
+  standalone: true,
+  imports: [CommonModule],
+  templateUrl: './share-with-team-page.component.html',
+  styleUrl: './share-with-team-page.component.scss'
+})
+export class ShareWithTeamPageComponent {
+
+}