first content

add: Cards for Generators on startpage. test site, navbar
This commit is contained in:
danielvici123
2025-11-16 18:17:15 +01:00
parent ab780e788c
commit 05e3fa1dcb
32 changed files with 299 additions and 81 deletions

View File

View File

@@ -0,0 +1,9 @@
<div class="flex flex-col justify-center items-center">
<h1 class="text-7xl text-white m-10">Yeah. This Site works...</h1>
<div class="flex justify-center">
<button
class="text-xl w-fit bg-blue-500 text-white py-2 px-4 rounded-md hover:bg-blue-600 transition-colors hover:cursor-pointer"
routerLink="/"
>Home</button>
</div>
</div>

View File

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

View File

@@ -0,0 +1,14 @@
import { Component } from '@angular/core';
import {RouterLink} from '@angular/router';
@Component({
selector: 'app-test-it',
imports: [
RouterLink
],
templateUrl: './test-it.html',
styleUrl: './test-it.css',
})
export class TestIt {
}