add feedback button on all CSC pages
This commit is contained in:
parent
13f3220456
commit
14cdf17ec3
16 changed files with 590 additions and 5 deletions
|
|
@ -3,11 +3,13 @@
|
|||
<title>CSC implémentation</title>
|
||||
</head>
|
||||
<body>
|
||||
<app-top-navigation></app-top-navigation>
|
||||
<router-outlet/>
|
||||
<h1>
|
||||
<img src="csc_logo.svg" alt="logo">
|
||||
CSC
|
||||
</h1>
|
||||
|
||||
<sae-feedback-button></sae-feedback-button>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -1,10 +1,12 @@
|
|||
import { Component, signal } from '@angular/core';
|
||||
import { RouterOutlet } from '@angular/router';
|
||||
import {TopNavigation} from './shared/navigation/top-navigation/top-navigation';
|
||||
import {FeedbackButton} from 'sae-lib/buttons/feedback-button/feedback-button';
|
||||
// import {SaeLib} from '@sae-lib/src/public-api';
|
||||
|
||||
@Component({
|
||||
selector: 'app-root',
|
||||
imports: [RouterOutlet],
|
||||
imports: [RouterOutlet, TopNavigation, FeedbackButton],
|
||||
templateUrl: './app.html',
|
||||
styleUrl: './app.scss'
|
||||
})
|
||||
|
|
|
|||
|
|
@ -1,5 +1,4 @@
|
|||
<div id="main_page">
|
||||
<app-top-navigation></app-top-navigation>
|
||||
<main>
|
||||
|
||||
<h2 class="title">
|
||||
|
|
|
|||
|
|
@ -8,7 +8,6 @@ import {BottomNavigation} from '../../shared/navigation/bottom-navigation/bottom
|
|||
@Component({
|
||||
selector: 'app-main',
|
||||
imports: [
|
||||
TopNavigation,
|
||||
TranslateTexts,
|
||||
FiltersGroup,
|
||||
BottomNavigation
|
||||
|
|
|
|||
9
sae-csc/src/app/redux/csc.types.ts
Normal file
9
sae-csc/src/app/redux/csc.types.ts
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
export type CscCase = {
|
||||
|
||||
};
|
||||
export type TechManual = {
|
||||
|
||||
};
|
||||
export type filterListing = {
|
||||
|
||||
};
|
||||
|
|
@ -5,7 +5,7 @@ import {StateInterface} from './reducers';
|
|||
export const initialState: StateInterface = {
|
||||
app: {
|
||||
backendAPIRoot: "",
|
||||
demoMode: true, // selon l'environnement
|
||||
demoMode: true,
|
||||
},
|
||||
currentLang: "fr_FR",
|
||||
currentTheme: "light",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue