diff --git a/src/app/pages/home/home.html b/src/app/pages/home/home.html
new file mode 100644
index 0000000..e69de29
diff --git a/src/app/pages/home/home.spec.ts b/src/app/pages/home/home.spec.ts
new file mode 100644
index 0000000..d332367
--- /dev/null
+++ b/src/app/pages/home/home.spec.ts
@@ -0,0 +1,31 @@
+import { ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { Home } from './home';
+import { Sqlite } from '../../services/sqlite';
+import { provideTranslateService } from '@ngx-translate/core';
+import { BottomNavigationBar } from '../../components/bottom-navigation-bar/bottom-navigation-bar';
+
+describe('Home', () => {
+ let component: Home;
+ let fixture: ComponentFixture;
+
+ beforeEach(async () => {
+ TestBed.overrideComponent(BottomNavigationBar, {
+ set: {template: ``}
+ });
+
+ await TestBed.configureTestingModule({
+ imports: [Home],
+ providers: [{ provide: Sqlite, useValue: {} }, provideTranslateService({})],
+ }).compileComponents();
+
+ fixture = TestBed.createComponent(Home);
+
+ component = fixture.componentInstance;
+ await fixture.whenStable();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});
diff --git a/src/app/pages/home/home.ts b/src/app/pages/home/home.ts
new file mode 100644
index 0000000..f8acdd6
--- /dev/null
+++ b/src/app/pages/home/home.ts
@@ -0,0 +1,11 @@
+import { Component } from '@angular/core';
+
+@Component({
+ selector: 'app-home',
+ imports: [],
+ templateUrl: './home.html',
+ styles: ``,
+})
+export class Home {
+
+}