renommage de lib, rendre buildable

This commit is contained in:
Tykayn 2025-08-08 10:57:00 +02:00 committed by tykayn
parent 1706c64713
commit a89007a81b
9896 changed files with 478996 additions and 496 deletions

View file

@ -0,0 +1,15 @@
<div class="bottom-navigation">
<nav class="navigation">
<a class="nav-item">
privacy policy
</a>
<a class="nav-item">
contact
</a>
</nav>
<div class="fixed-navigation">
<button class="next-step" routerLink="similar-cases">
Search similar cases
</button>
</div>
</div>

View file

@ -0,0 +1,14 @@
.next-step{
color: var(--color-text-invert, #FFF);
text-align: center;
leading-trim: both;
text-edge: cap;
/* Text/text-button */
font-family: var(--Fonts-Font-text, Barlow);
font-size: var(--Font-Base, 14px);
font-style: normal;
font-weight: 600;
line-height: 100%; /* 14px */
letter-spacing: 1.12px;
}

View file

@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { BottomNavigation } from './bottom-navigation';
describe('BottomNavigation', () => {
let component: BottomNavigation;
let fixture: ComponentFixture<BottomNavigation>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [BottomNavigation]
})
.compileComponents();
fixture = TestBed.createComponent(BottomNavigation);
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-bottom-navigation',
imports: [
RouterLink
],
templateUrl: './bottom-navigation.html',
styleUrl: './bottom-navigation.scss'
})
export class BottomNavigation {
}

View file

@ -0,0 +1,51 @@
<div class="top-navigation">
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="https://cipherbliss.com">
<img src="safran_logo.svg" alt="logo">
</a>
<a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false"
data-target="navbarBasicExample">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="navbarBasicExample" class="navbar-menu">
<div class="navbar-end">
<a class="navbar-item" routerLink="home" routerLinkActive="active-link">
<img src="csc_logo.svg" alt="logo">
CSC Solution Matcher
</a>
<a class="navbar-item">
Home
</a>
<a class="navbar-item">
Admin
</a>
<a class="navbar-item">
Quick Start
</a>
<a class="navbar-item">
<!-- exit-->
<i class="ri-door-line"></i>
</a>
<a class="navbar-item">
<!-- user -->
borhène
</a>
</div>
</div>
</nav>
</div>

View file

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

View file

@ -0,0 +1,15 @@
import {Component} from '@angular/core';
import {RouterLink, RouterLinkActive} from '@angular/router';
@Component({
selector: 'app-top-navigation',
imports: [
RouterLink,
RouterLinkActive
],
templateUrl: './top-navigation.html',
styleUrl: './top-navigation.scss'
})
export class TopNavigation {
}