parent
cc60508546
commit
7785dd624d
@ -0,0 +1,10 @@
|
|||||||
|
|
||||||
|
.love-hugo {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
font-size: 3rem;
|
||||||
|
color: pink;
|
||||||
|
text-align: center;
|
||||||
|
}
|
@ -0,0 +1 @@
|
|||||||
|
<span class="love-hugo">Ceci est la page Documentation réclamé par Hugo le 21 Septembre 2023. Elle contient une documentation inconnue à ce jour. Cepandant, elle est très importante pour le bon fonctionnement du site et la compréhension de toutes les fonctionnalités ajoutées par l'équipe Sandkasten</span>
|
@ -0,0 +1,21 @@
|
|||||||
|
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||||
|
|
||||||
|
import { DocumentationComponent } from './documentation.component';
|
||||||
|
|
||||||
|
describe('DocumentationComponent', () => {
|
||||||
|
let component: DocumentationComponent;
|
||||||
|
let fixture: ComponentFixture<DocumentationComponent>;
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
TestBed.configureTestingModule({
|
||||||
|
declarations: [DocumentationComponent]
|
||||||
|
});
|
||||||
|
fixture = TestBed.createComponent(DocumentationComponent);
|
||||||
|
component = fixture.componentInstance;
|
||||||
|
fixture.detectChanges();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should create', () => {
|
||||||
|
expect(component).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
@ -0,0 +1,10 @@
|
|||||||
|
import { Component } from '@angular/core';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'app-documentation',
|
||||||
|
templateUrl: './documentation.component.html',
|
||||||
|
styleUrls: ['./documentation.component.css']
|
||||||
|
})
|
||||||
|
export class DocumentationComponent {
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in new issue