mirror of
https://github.com/danielvici/tool-website.git
synced 2026-01-17 02:21:26 +00:00
first content
add: Cards for Generators on startpage. test site, navbar
This commit is contained in:
0
src/app/sites/test-it/test-it.css
Normal file
0
src/app/sites/test-it/test-it.css
Normal file
9
src/app/sites/test-it/test-it.html
Normal file
9
src/app/sites/test-it/test-it.html
Normal 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>
|
||||
23
src/app/sites/test-it/test-it.spec.ts
Normal file
23
src/app/sites/test-it/test-it.spec.ts
Normal 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();
|
||||
});
|
||||
});
|
||||
14
src/app/sites/test-it/test-it.ts
Normal file
14
src/app/sites/test-it/test-it.ts
Normal 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 {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user