Lorem, ipsum dolor, sit amet consectetur adipisicing elit...
+
+
+
+
+
+
+
+
+
Symptôme du Coronavirus
+
Lorem, ipsum dolor sit amet consectetur...
+
+
+
+
+
+
+
+
+
Forte fièvre
+
Lorem ipsum dolor sit amet...
+
+
+
+
+
+
+
+
+
+
Toux
+
Lorem ipsum dolor sit amet...
+
+
+
+
+
+
+
+
+
+
Gorge irritée
+
Lorem ipsum dolor sit amet...
+
+
+
+
+
+
+
+
+
+
Migraine
+
Lorem ipsum dolor sit amet...
+
+
+
+
+
\ No newline at end of file
diff --git a/angular/src/app/symptome/symptome.component.css b/angular/src/app/symptome/symptome.component.css
new file mode 100644
index 0000000..e69de29
diff --git a/angular/src/app/symptome/symptome.component.html b/angular/src/app/symptome/symptome.component.html
new file mode 100644
index 0000000..1e0558d
--- /dev/null
+++ b/angular/src/app/symptome/symptome.component.html
@@ -0,0 +1 @@
+
symptome works!
diff --git a/angular/src/app/symptome/symptome.component.spec.ts b/angular/src/app/symptome/symptome.component.spec.ts
new file mode 100644
index 0000000..d1e0d3e
--- /dev/null
+++ b/angular/src/app/symptome/symptome.component.spec.ts
@@ -0,0 +1,23 @@
+import { ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { SymptomeComponent } from './symptome.component';
+
+describe('SymptomeComponent', () => {
+ let component: SymptomeComponent;
+ let fixture: ComponentFixture;
+
+ beforeEach(async () => {
+ await TestBed.configureTestingModule({
+ declarations: [SymptomeComponent]
+ })
+ .compileComponents();
+
+ fixture = TestBed.createComponent(SymptomeComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});
diff --git a/angular/src/app/symptome/symptome.component.ts b/angular/src/app/symptome/symptome.component.ts
new file mode 100644
index 0000000..c8e9850
--- /dev/null
+++ b/angular/src/app/symptome/symptome.component.ts
@@ -0,0 +1,11 @@
+import { Component } from '@angular/core';
+
+@Component({
+ selector: 'app-symptome',
+ standalone: false,
+ templateUrl: './symptome.component.html',
+ styleUrl: './symptome.component.css'
+})
+export class SymptomeComponent {
+
+}
diff --git a/angular/src/assets/illustration.png b/angular/src/assets/illustration.png
new file mode 100644
index 0000000..1eaba44
Binary files /dev/null and b/angular/src/assets/illustration.png differ
diff --git a/angular/src/assets/logo.ico b/angular/src/assets/logo.ico
new file mode 100644
index 0000000..f9179e8
Binary files /dev/null and b/angular/src/assets/logo.ico differ
diff --git a/angular/src/assets/logo.png b/angular/src/assets/logo.png
new file mode 100644
index 0000000..6e75e34
Binary files /dev/null and b/angular/src/assets/logo.png differ
diff --git a/angular/src/index.html b/angular/src/index.html
index aa06306..3c6dff3 100644
--- a/angular/src/index.html
+++ b/angular/src/index.html
@@ -5,9 +5,9 @@
Angular
-
+
-
+
diff --git a/angular/src/styles.css b/angular/src/styles.css
index 473dcd0..1bd1c52 100644
--- a/angular/src/styles.css
+++ b/angular/src/styles.css
@@ -1,4 +1,19 @@
/* You can add global styles to this file, and also import other style files */
+.background-all {
+ background: linear-gradient(90deg, #E3F2FD, #FFFFFF);
+ background-size: 400% 400%;
+ animation: gradientAnimation 6s infinite alternate ease-in-out;
+}
+
+@keyframes gradientAnimation {
+ 0% {
+ background-position: 0% 50%;
+ }
+ 100% {
+ background-position: 100% 50%;
+ }
+}
+
.active-link {
color: #ffc107 !important; /* Jaune Bootstrap */
font-weight: bold;