first site, and add navbar

This commit is contained in:
danielvici123
2025-11-14 21:27:05 +01:00
parent 87b71d96bc
commit ab780e788c
18 changed files with 711 additions and 354 deletions

View File

View File

@@ -0,0 +1,7 @@
<div class="text-white">
<h1 class="text-center">Moin Welt</h1>
<p>TailwindCSS geht</p>
</div>

View File

@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { Startpage } from './startpage';
describe('Startpage', () => {
let component: Startpage;
let fixture: ComponentFixture<Startpage>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [Startpage]
})
.compileComponents();
fixture = TestBed.createComponent(Startpage);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

View File

@@ -0,0 +1,14 @@
import { Component } from '@angular/core';
import {NgOptimizedImage} from '@angular/common';
@Component({
selector: 'app-startpage',
imports: [
NgOptimizedImage
],
templateUrl: './startpage.html',
styleUrl: './startpage.css',
})
export class Startpage {
}