add lib
20
angular.json
|
|
@ -28,11 +28,13 @@
|
|||
"assets": [
|
||||
{
|
||||
"glob": "**/*",
|
||||
"input": "public"
|
||||
"input": "src/assets/",
|
||||
"output": "/assets/"
|
||||
}
|
||||
],
|
||||
"styles": [
|
||||
"src/styles.scss"
|
||||
"src/styles.scss",
|
||||
"src/fonts.scss"
|
||||
],
|
||||
"scripts": [],
|
||||
"server": "src/main.server.ts",
|
||||
|
|
@ -60,7 +62,13 @@
|
|||
"development": {
|
||||
"optimization": false,
|
||||
"extractLicenses": false,
|
||||
"sourceMap": true
|
||||
"sourceMap": true,
|
||||
"fileReplacements": [
|
||||
{
|
||||
"replace": "src/environments/environment.ts",
|
||||
"with": "src/environments/environment.development.ts"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"defaultConfiguration": "production"
|
||||
|
|
@ -92,7 +100,8 @@
|
|||
"assets": [
|
||||
{
|
||||
"glob": "**/*",
|
||||
"input": "public"
|
||||
"input": "src/assets/",
|
||||
"output": "/assets/"
|
||||
}
|
||||
],
|
||||
"styles": [
|
||||
|
|
@ -103,5 +112,8 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"cli": {
|
||||
"analytics": false
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,6 +20,7 @@
|
|||
"@angular/ssr": "^18.0.0",
|
||||
"express": "^4.18.2",
|
||||
"rxjs": "~7.8.0",
|
||||
"swiper": "^11.1.3",
|
||||
"tslib": "^2.3.0",
|
||||
"zone.js": "~0.14.3"
|
||||
},
|
||||
|
|
@ -11199,6 +11200,24 @@
|
|||
"url": "https://github.com/sponsors/ljharb"
|
||||
}
|
||||
},
|
||||
"node_modules/swiper": {
|
||||
"version": "11.1.3",
|
||||
"resolved": "https://registry.npmjs.org/swiper/-/swiper-11.1.3.tgz",
|
||||
"integrity": "sha512-80MSxonyTxrGcaWj9YgvvhD8OG0B9/9IVZP33vhIEvyWvmKjnQDBieO+29wKvMx285sAtvZyrWBdkxaw6+D3aw==",
|
||||
"funding": [
|
||||
{
|
||||
"type": "patreon",
|
||||
"url": "https://www.patreon.com/swiperjs"
|
||||
},
|
||||
{
|
||||
"type": "open_collective",
|
||||
"url": "http://opencollective.com/swiper"
|
||||
}
|
||||
],
|
||||
"engines": {
|
||||
"node": ">= 4.7.0"
|
||||
}
|
||||
},
|
||||
"node_modules/symbol-observable": {
|
||||
"version": "4.0.0",
|
||||
"resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-4.0.0.tgz",
|
||||
|
|
|
|||
|
|
@ -23,6 +23,7 @@
|
|||
"@angular/ssr": "^18.0.0",
|
||||
"express": "^4.18.2",
|
||||
"rxjs": "~7.8.0",
|
||||
"swiper": "^11.1.3",
|
||||
"tslib": "^2.3.0",
|
||||
"zone.js": "~0.14.3"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -0,0 +1,16 @@
|
|||
import {Injectable} from '@angular/core';
|
||||
import {HttpClient} from '@angular/common/http';
|
||||
import { environment } from '../../environments/environment';
|
||||
import {Observable} from "rxjs";
|
||||
import {Router} from "@angular/router";
|
||||
|
||||
@Injectable({providedIn: 'root'})
|
||||
export class FormsService {
|
||||
constructor(private http: HttpClient, private router: Router) {
|
||||
}
|
||||
|
||||
save(target: string, type: string, id?: string, data?: any): Observable<any> {
|
||||
let url = `${environment.apiUrl}/api/forms/${target}/${type}`;
|
||||
return this.http.post(url,data);
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,111 @@
|
|||
import {Injectable} from '@angular/core';
|
||||
import { Meta, Title } from '@angular/platform-browser';
|
||||
import { environment } from 'src/environments/environment';
|
||||
import { Router } from '@angular/router';
|
||||
import { filter } from "rxjs/operators";
|
||||
|
||||
|
||||
@Injectable({
|
||||
providedIn: 'root'
|
||||
})
|
||||
export class SEOService {
|
||||
constructor(private title: Title, private meta: Meta, router:Router) {
|
||||
router.events
|
||||
.pipe(
|
||||
filter((event:any)=>{return event.routerEvent})
|
||||
)
|
||||
.subscribe(
|
||||
(event)=>{
|
||||
console.log(event.routerEvent.url);
|
||||
let data = this.seoData[event.routerEvent.url]
|
||||
if(data){
|
||||
this.updateTitle(data.title);
|
||||
this.updateDescription(data.description);
|
||||
this.updateImage(data.image);
|
||||
}
|
||||
}
|
||||
)
|
||||
}
|
||||
|
||||
updateTitle(title: string) {
|
||||
this.title.setTitle(title);
|
||||
this.meta.updateTag({ name: 'og:title', content: title});
|
||||
}
|
||||
|
||||
updateDescription(desc: string) {
|
||||
this.meta.updateTag({ name: 'description', content: desc })
|
||||
this.meta.updateTag({ name: 'og:description', content: desc })
|
||||
}
|
||||
|
||||
updateImage(url:string){
|
||||
this.meta.updateTag({ name: 'og:image', content: environment.domenUrl + '/' + url })
|
||||
}
|
||||
|
||||
seoData = {
|
||||
'/':{
|
||||
title: 'НИР Груп – создаем ИТ-инструменты под ваши задачи',
|
||||
description: 'Мы беремся за самые амбициозные проекты и выполняем их точно в срок. Разработка ПО, Автоматизация бизнес-процессов, Создание нагруженных сайтов.',
|
||||
image:'assets/img/home.jpg'
|
||||
},
|
||||
"/about":{
|
||||
title: 'О Нас | НИР Груп',
|
||||
description:'ООО «НИР» — российская ИТ-компания, специализирующаяся на разработке импортонезависимого ПО и автоматизации сложных процессов.',
|
||||
image:'assets/img/about.jpg'
|
||||
},
|
||||
"/automatization":{
|
||||
title: 'Автоматизация бизнес-процессов любой сложности',
|
||||
description:'Мгновенная сквозная аналитика, Повышение эффективности документооборота, Прозрачность процессов, Ускорение принятия решений, Избавление от рутины.',
|
||||
image:'assets/img/automatization.jpg'
|
||||
},
|
||||
"/development":{
|
||||
title: 'Разработка программного обеспечения (ПО) на заказ',
|
||||
description:'Разработка ПО любой сложности под любые задачи. Помогаем автоматизировать бизнес-процессы, избавляем от рутинных задач, находим новые решения.',
|
||||
image:'assets/img/development.jpg'
|
||||
},
|
||||
"/contacts":{
|
||||
title: 'Контакты | НИР Груп',
|
||||
description:'Тел: +7 (499) 490-04-65; E-mail: info@nirgroup.ru; Адрес: 121170, г. Москва, Кутузовский проспект, д. 36, стр. 3, офис 222',
|
||||
image:'assets/img/contacts.jpg'
|
||||
},
|
||||
"/sites":{
|
||||
title: 'Создание и Разработка официальных сайтов',
|
||||
description:'Удобный и безопасный сайт для работы с массивными данными и документами. Любой функционал и дизайн, простой интерфейс, данные на вашем сервере.',
|
||||
image:'assets/img/sites.jpg'
|
||||
},
|
||||
"/projects":{
|
||||
title: 'Наши проекты | НИР Груп',
|
||||
description:'Нашими решениями ежедневно пользуются представители крупнейших компаний и государственных учреждений. Ознакомьтесь с нашими проектами.',
|
||||
image:'assets/img/projects.jpg'
|
||||
},
|
||||
'/projects/vniigaz':{
|
||||
title: 'Проект "ВНИИГАЗ-Сертификат" | НИР Груп',
|
||||
description:'Создание корпоративного портал "ВНИИГАЗ-Сертификат"',
|
||||
image:'assets/img/vniigaz/vniigaz-top.svg'
|
||||
},
|
||||
'/projects/faufcs':{
|
||||
title: 'Проект "ФАУ "ФЦС" | НИР Груп',
|
||||
description:'Создание корпоративного сайта ФАУ "ФЦС"',
|
||||
image:'assets/img/faufcs/faufcs-top.svg'
|
||||
},
|
||||
'/projects/tk023':{
|
||||
title: 'Проект "ТК-023" | НИР Груп',
|
||||
description:'Создание интернет-портала с АИС "ТК-023"',
|
||||
image:'assets/img/tk023/tk023-top.png'
|
||||
},
|
||||
'/projects/tk465':{
|
||||
title: 'Проект "ТК-465" | НИР Груп',
|
||||
description:'Создание автоматизированной информационной системы "ТК-465"',
|
||||
image:'assets/img/tk465/tk465-top.svg'
|
||||
},
|
||||
'/projects/scvg':{
|
||||
title: 'Проект "ЧУ СЦ «ВНИИГАЗ-Сертификат»" | НИР Груп',
|
||||
description:'Создание автоматизированной платформы допуска продукции "ЧУ СЦ «ВНИИГАЗ-Сертификат»"',
|
||||
image:'assets/img/scvg/scvg-top.svg'
|
||||
},
|
||||
'/projects/intergaz':{
|
||||
title: 'Проект "ИНТЕРГАЗСЕРТ" | НИР Груп',
|
||||
description:'Создание информационной системы «Интергазсерт»',
|
||||
image:'assets/img/intergaz/intergaz-top.svg'
|
||||
},
|
||||
}
|
||||
}
|
||||
|
|
@ -1,336 +1,105 @@
|
|||
<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * -->
|
||||
<!-- * * * * * * * * * * * The content below * * * * * * * * * * * -->
|
||||
<!-- * * * * * * * * * * is only a placeholder * * * * * * * * * * -->
|
||||
<!-- * * * * * * * * * * and can be replaced. * * * * * * * * * * -->
|
||||
<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * -->
|
||||
<!-- * * * * * * * * * Delete the template below * * * * * * * * * -->
|
||||
<!-- * * * * * * * to get started with your project! * * * * * * * -->
|
||||
<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * -->
|
||||
<header>
|
||||
<div class="header-shadow" [hidden]="!navShow" (click)="navShow = false"></div>
|
||||
|
||||
<style>
|
||||
:host {
|
||||
--bright-blue: oklch(51.01% 0.274 263.83);
|
||||
--electric-violet: oklch(53.18% 0.28 296.97);
|
||||
--french-violet: oklch(47.66% 0.246 305.88);
|
||||
--vivid-pink: oklch(69.02% 0.277 332.77);
|
||||
--hot-red: oklch(61.42% 0.238 15.34);
|
||||
--orange-red: oklch(63.32% 0.24 31.68);
|
||||
|
||||
--gray-900: oklch(19.37% 0.006 300.98);
|
||||
--gray-700: oklch(36.98% 0.014 302.71);
|
||||
--gray-400: oklch(70.9% 0.015 304.04);
|
||||
|
||||
--red-to-pink-to-purple-vertical-gradient: linear-gradient(
|
||||
180deg,
|
||||
var(--orange-red) 0%,
|
||||
var(--vivid-pink) 50%,
|
||||
var(--electric-violet) 100%
|
||||
);
|
||||
|
||||
--red-to-pink-to-purple-horizontal-gradient: linear-gradient(
|
||||
90deg,
|
||||
var(--orange-red) 0%,
|
||||
var(--vivid-pink) 50%,
|
||||
var(--electric-violet) 100%
|
||||
);
|
||||
|
||||
--pill-accent: var(--bright-blue);
|
||||
|
||||
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
|
||||
Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
|
||||
"Segoe UI Symbol";
|
||||
box-sizing: border-box;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 3.125rem;
|
||||
color: var(--gray-900);
|
||||
font-weight: 500;
|
||||
line-height: 100%;
|
||||
letter-spacing: -0.125rem;
|
||||
margin: 0;
|
||||
font-family: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
|
||||
Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
|
||||
"Segoe UI Symbol";
|
||||
}
|
||||
|
||||
p {
|
||||
margin: 0;
|
||||
color: var(--gray-700);
|
||||
}
|
||||
|
||||
main {
|
||||
width: 100%;
|
||||
min-height: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
padding: 1rem;
|
||||
box-sizing: inherit;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.angular-logo {
|
||||
max-width: 9.2rem;
|
||||
}
|
||||
|
||||
.content {
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
width: 100%;
|
||||
max-width: 700px;
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
|
||||
.content h1 {
|
||||
margin-top: 1.75rem;
|
||||
}
|
||||
|
||||
.content p {
|
||||
margin-top: 1.5rem;
|
||||
}
|
||||
|
||||
.divider {
|
||||
width: 1px;
|
||||
background: var(--red-to-pink-to-purple-vertical-gradient);
|
||||
margin-inline: 0.5rem;
|
||||
}
|
||||
|
||||
.pill-group {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: start;
|
||||
flex-wrap: wrap;
|
||||
gap: 1.25rem;
|
||||
}
|
||||
|
||||
.pill {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
--pill-accent: var(--bright-blue);
|
||||
background: color-mix(in srgb, var(--pill-accent) 5%, transparent);
|
||||
color: var(--pill-accent);
|
||||
padding-inline: 0.75rem;
|
||||
padding-block: 0.375rem;
|
||||
border-radius: 2.75rem;
|
||||
border: 0;
|
||||
transition: background 0.3s ease;
|
||||
font-family: var(--inter-font);
|
||||
font-size: 0.875rem;
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
line-height: 1.4rem;
|
||||
letter-spacing: -0.00875rem;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.pill:hover {
|
||||
background: color-mix(in srgb, var(--pill-accent) 15%, transparent);
|
||||
}
|
||||
|
||||
.pill-group .pill:nth-child(6n + 1) {
|
||||
--pill-accent: var(--bright-blue);
|
||||
}
|
||||
.pill-group .pill:nth-child(6n + 2) {
|
||||
--pill-accent: var(--french-violet);
|
||||
}
|
||||
.pill-group .pill:nth-child(6n + 3),
|
||||
.pill-group .pill:nth-child(6n + 4),
|
||||
.pill-group .pill:nth-child(6n + 5) {
|
||||
--pill-accent: var(--hot-red);
|
||||
}
|
||||
|
||||
.pill-group svg {
|
||||
margin-inline-start: 0.25rem;
|
||||
}
|
||||
|
||||
.social-links {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.73rem;
|
||||
margin-top: 1.5rem;
|
||||
}
|
||||
|
||||
.social-links path {
|
||||
transition: fill 0.3s ease;
|
||||
fill: var(--gray-400);
|
||||
}
|
||||
|
||||
.social-links a:hover svg path {
|
||||
fill: var(--gray-900);
|
||||
}
|
||||
|
||||
@media screen and (max-width: 650px) {
|
||||
.content {
|
||||
flex-direction: column;
|
||||
width: max-content;
|
||||
}
|
||||
|
||||
.divider {
|
||||
height: 1px;
|
||||
width: 100%;
|
||||
background: var(--red-to-pink-to-purple-horizontal-gradient);
|
||||
margin-block: 1.5rem;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
<main class="main">
|
||||
<div class="content">
|
||||
<div class="left-side">
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
viewBox="0 0 982 239"
|
||||
fill="none"
|
||||
class="angular-logo"
|
||||
>
|
||||
<g clip-path="url(#a)">
|
||||
<path
|
||||
fill="url(#b)"
|
||||
d="M388.676 191.625h30.849L363.31 31.828h-35.758l-56.215 159.797h30.848l13.174-39.356h60.061l13.256 39.356Zm-65.461-62.675 21.602-64.311h1.227l21.602 64.311h-44.431Zm126.831-7.527v70.202h-28.23V71.839h27.002v20.374h1.392c2.782-6.71 7.2-12.028 13.255-15.956 6.056-3.927 13.584-5.89 22.503-5.89 8.264 0 15.465 1.8 21.684 5.318 6.137 3.518 10.964 8.673 14.319 15.382 3.437 6.71 5.074 14.81 4.992 24.383v76.175h-28.23v-71.92c0-8.019-2.046-14.237-6.219-18.819-4.173-4.5-9.819-6.791-17.102-6.791-4.91 0-9.328 1.063-13.174 3.272-3.846 2.128-6.792 5.237-9.001 9.328-2.046 4.009-3.191 8.918-3.191 14.728ZM589.233 239c-10.147 0-18.82-1.391-26.103-4.091-7.282-2.7-13.092-6.382-17.511-10.964-4.418-4.582-7.528-9.655-9.164-15.219l25.448-6.136c1.145 2.372 2.782 4.663 4.991 6.954 2.209 2.291 5.155 4.255 8.837 5.81 3.683 1.554 8.428 2.291 14.074 2.291 8.019 0 14.647-1.964 19.884-5.81 5.237-3.845 7.856-10.227 7.856-19.064v-22.665h-1.391c-1.473 2.946-3.601 5.892-6.383 9.001-2.782 3.109-6.464 5.645-10.965 7.691-4.582 2.046-10.228 3.109-17.101 3.109-9.165 0-17.511-2.209-25.039-6.545-7.446-4.337-13.42-10.883-17.757-19.474-4.418-8.673-6.628-19.473-6.628-32.565 0-13.091 2.21-24.301 6.628-33.383 4.419-9.082 10.311-15.955 17.839-20.7 7.528-4.746 15.874-7.037 25.039-7.037 7.037 0 12.846 1.145 17.347 3.518 4.582 2.373 8.182 5.236 10.883 8.51 2.7 3.272 4.746 6.382 6.137 9.327h1.554v-19.8h27.821v121.749c0 10.228-2.454 18.737-7.364 25.447-4.91 6.709-11.538 11.7-20.048 15.055-8.509 3.355-18.165 4.991-28.884 4.991Zm.245-71.266c5.974 0 11.047-1.473 15.302-4.337 4.173-2.945 7.446-7.118 9.573-12.519 2.21-5.482 3.274-12.027 3.274-19.637 0-7.609-1.064-14.155-3.274-19.8-2.127-5.646-5.318-10.064-9.491-13.255-4.174-3.11-9.329-4.746-15.384-4.746s-11.537 1.636-15.792 4.91c-4.173 3.272-7.365 7.772-9.492 13.418-2.128 5.727-3.191 12.191-3.191 19.392 0 7.2 1.063 13.745 3.273 19.228 2.127 5.482 5.318 9.736 9.573 12.764 4.174 3.027 9.41 4.582 15.629 4.582Zm141.56-26.51V71.839h28.23v119.786h-27.412v-21.273h-1.227c-2.7 6.709-7.119 12.191-13.338 16.446-6.137 4.255-13.747 6.382-22.748 6.382-7.855 0-14.81-1.718-20.783-5.237-5.974-3.518-10.72-8.591-14.075-15.382-3.355-6.709-5.073-14.891-5.073-24.464V71.839h28.312v71.921c0 7.609 2.046 13.664 6.219 18.083 4.173 4.5 9.655 6.709 16.365 6.709 4.173 0 8.183-.982 12.111-3.028 3.927-2.045 7.118-5.072 9.655-9.082 2.537-4.091 3.764-9.164 3.764-15.218Zm65.707-109.395v159.796h-28.23V31.828h28.23Zm44.841 162.169c-7.61 0-14.402-1.391-20.457-4.091-6.055-2.7-10.883-6.791-14.32-12.109-3.518-5.319-5.237-11.946-5.237-19.801 0-6.791 1.228-12.355 3.765-16.773 2.536-4.419 5.891-7.937 10.228-10.637 4.337-2.618 9.164-4.664 14.647-6.055 5.4-1.391 11.046-2.373 16.856-3.027 7.037-.737 12.683-1.391 17.102-1.964 4.337-.573 7.528-1.555 9.574-2.782 1.963-1.309 3.027-3.273 3.027-5.973v-.491c0-5.891-1.718-10.391-5.237-13.664-3.518-3.191-8.51-4.828-15.056-4.828-6.955 0-12.356 1.473-16.447 4.5-4.009 3.028-6.71 6.546-8.183 10.719l-26.348-3.764c2.046-7.282 5.483-13.336 10.31-18.328 4.746-4.909 10.638-8.59 17.511-11.045 6.955-2.455 14.565-3.682 22.912-3.682 5.809 0 11.537.654 17.265 2.045s10.965 3.6 15.711 6.71c4.746 3.109 8.51 7.282 11.455 12.6 2.864 5.318 4.337 11.946 4.337 19.883v80.184h-27.166v-16.446h-.9c-1.719 3.355-4.092 6.464-7.201 9.328-3.109 2.864-6.955 5.237-11.619 6.955-4.828 1.718-10.229 2.536-16.529 2.536Zm7.364-20.701c5.646 0 10.556-1.145 14.729-3.354 4.173-2.291 7.364-5.237 9.655-9.001 2.292-3.763 3.355-7.854 3.355-12.273v-14.155c-.9.737-2.373 1.391-4.5 2.046-2.128.654-4.419 1.145-7.037 1.636-2.619.491-5.155.9-7.692 1.227-2.537.328-4.746.655-6.628.901-4.173.572-8.019 1.472-11.292 2.781-3.355 1.31-5.973 3.11-7.855 5.401-1.964 2.291-2.864 5.318-2.864 8.918 0 5.237 1.882 9.164 5.728 11.782 3.682 2.782 8.51 4.091 14.401 4.091Zm64.643 18.328V71.839h27.412v19.965h1.227c2.21-6.955 5.974-12.274 11.292-16.038 5.319-3.763 11.456-5.645 18.329-5.645 1.555 0 3.355.082 5.237.163 1.964.164 3.601.328 4.91.573v25.938c-1.227-.41-3.109-.819-5.646-1.146a58.814 58.814 0 0 0-7.446-.49c-5.155 0-9.738 1.145-13.829 3.354-4.091 2.209-7.282 5.236-9.655 9.164-2.373 3.927-3.519 8.427-3.519 13.5v70.448h-28.312ZM222.077 39.192l-8.019 125.923L137.387 0l84.69 39.192Zm-53.105 162.825-57.933 33.056-57.934-33.056 11.783-28.556h92.301l11.783 28.556ZM111.039 62.675l30.357 73.803H80.681l30.358-73.803ZM7.937 165.115 0 39.192 84.69 0 7.937 165.115Z"
|
||||
/>
|
||||
<path
|
||||
fill="url(#c)"
|
||||
d="M388.676 191.625h30.849L363.31 31.828h-35.758l-56.215 159.797h30.848l13.174-39.356h60.061l13.256 39.356Zm-65.461-62.675 21.602-64.311h1.227l21.602 64.311h-44.431Zm126.831-7.527v70.202h-28.23V71.839h27.002v20.374h1.392c2.782-6.71 7.2-12.028 13.255-15.956 6.056-3.927 13.584-5.89 22.503-5.89 8.264 0 15.465 1.8 21.684 5.318 6.137 3.518 10.964 8.673 14.319 15.382 3.437 6.71 5.074 14.81 4.992 24.383v76.175h-28.23v-71.92c0-8.019-2.046-14.237-6.219-18.819-4.173-4.5-9.819-6.791-17.102-6.791-4.91 0-9.328 1.063-13.174 3.272-3.846 2.128-6.792 5.237-9.001 9.328-2.046 4.009-3.191 8.918-3.191 14.728ZM589.233 239c-10.147 0-18.82-1.391-26.103-4.091-7.282-2.7-13.092-6.382-17.511-10.964-4.418-4.582-7.528-9.655-9.164-15.219l25.448-6.136c1.145 2.372 2.782 4.663 4.991 6.954 2.209 2.291 5.155 4.255 8.837 5.81 3.683 1.554 8.428 2.291 14.074 2.291 8.019 0 14.647-1.964 19.884-5.81 5.237-3.845 7.856-10.227 7.856-19.064v-22.665h-1.391c-1.473 2.946-3.601 5.892-6.383 9.001-2.782 3.109-6.464 5.645-10.965 7.691-4.582 2.046-10.228 3.109-17.101 3.109-9.165 0-17.511-2.209-25.039-6.545-7.446-4.337-13.42-10.883-17.757-19.474-4.418-8.673-6.628-19.473-6.628-32.565 0-13.091 2.21-24.301 6.628-33.383 4.419-9.082 10.311-15.955 17.839-20.7 7.528-4.746 15.874-7.037 25.039-7.037 7.037 0 12.846 1.145 17.347 3.518 4.582 2.373 8.182 5.236 10.883 8.51 2.7 3.272 4.746 6.382 6.137 9.327h1.554v-19.8h27.821v121.749c0 10.228-2.454 18.737-7.364 25.447-4.91 6.709-11.538 11.7-20.048 15.055-8.509 3.355-18.165 4.991-28.884 4.991Zm.245-71.266c5.974 0 11.047-1.473 15.302-4.337 4.173-2.945 7.446-7.118 9.573-12.519 2.21-5.482 3.274-12.027 3.274-19.637 0-7.609-1.064-14.155-3.274-19.8-2.127-5.646-5.318-10.064-9.491-13.255-4.174-3.11-9.329-4.746-15.384-4.746s-11.537 1.636-15.792 4.91c-4.173 3.272-7.365 7.772-9.492 13.418-2.128 5.727-3.191 12.191-3.191 19.392 0 7.2 1.063 13.745 3.273 19.228 2.127 5.482 5.318 9.736 9.573 12.764 4.174 3.027 9.41 4.582 15.629 4.582Zm141.56-26.51V71.839h28.23v119.786h-27.412v-21.273h-1.227c-2.7 6.709-7.119 12.191-13.338 16.446-6.137 4.255-13.747 6.382-22.748 6.382-7.855 0-14.81-1.718-20.783-5.237-5.974-3.518-10.72-8.591-14.075-15.382-3.355-6.709-5.073-14.891-5.073-24.464V71.839h28.312v71.921c0 7.609 2.046 13.664 6.219 18.083 4.173 4.5 9.655 6.709 16.365 6.709 4.173 0 8.183-.982 12.111-3.028 3.927-2.045 7.118-5.072 9.655-9.082 2.537-4.091 3.764-9.164 3.764-15.218Zm65.707-109.395v159.796h-28.23V31.828h28.23Zm44.841 162.169c-7.61 0-14.402-1.391-20.457-4.091-6.055-2.7-10.883-6.791-14.32-12.109-3.518-5.319-5.237-11.946-5.237-19.801 0-6.791 1.228-12.355 3.765-16.773 2.536-4.419 5.891-7.937 10.228-10.637 4.337-2.618 9.164-4.664 14.647-6.055 5.4-1.391 11.046-2.373 16.856-3.027 7.037-.737 12.683-1.391 17.102-1.964 4.337-.573 7.528-1.555 9.574-2.782 1.963-1.309 3.027-3.273 3.027-5.973v-.491c0-5.891-1.718-10.391-5.237-13.664-3.518-3.191-8.51-4.828-15.056-4.828-6.955 0-12.356 1.473-16.447 4.5-4.009 3.028-6.71 6.546-8.183 10.719l-26.348-3.764c2.046-7.282 5.483-13.336 10.31-18.328 4.746-4.909 10.638-8.59 17.511-11.045 6.955-2.455 14.565-3.682 22.912-3.682 5.809 0 11.537.654 17.265 2.045s10.965 3.6 15.711 6.71c4.746 3.109 8.51 7.282 11.455 12.6 2.864 5.318 4.337 11.946 4.337 19.883v80.184h-27.166v-16.446h-.9c-1.719 3.355-4.092 6.464-7.201 9.328-3.109 2.864-6.955 5.237-11.619 6.955-4.828 1.718-10.229 2.536-16.529 2.536Zm7.364-20.701c5.646 0 10.556-1.145 14.729-3.354 4.173-2.291 7.364-5.237 9.655-9.001 2.292-3.763 3.355-7.854 3.355-12.273v-14.155c-.9.737-2.373 1.391-4.5 2.046-2.128.654-4.419 1.145-7.037 1.636-2.619.491-5.155.9-7.692 1.227-2.537.328-4.746.655-6.628.901-4.173.572-8.019 1.472-11.292 2.781-3.355 1.31-5.973 3.11-7.855 5.401-1.964 2.291-2.864 5.318-2.864 8.918 0 5.237 1.882 9.164 5.728 11.782 3.682 2.782 8.51 4.091 14.401 4.091Zm64.643 18.328V71.839h27.412v19.965h1.227c2.21-6.955 5.974-12.274 11.292-16.038 5.319-3.763 11.456-5.645 18.329-5.645 1.555 0 3.355.082 5.237.163 1.964.164 3.601.328 4.91.573v25.938c-1.227-.41-3.109-.819-5.646-1.146a58.814 58.814 0 0 0-7.446-.49c-5.155 0-9.738 1.145-13.829 3.354-4.091 2.209-7.282 5.236-9.655 9.164-2.373 3.927-3.519 8.427-3.519 13.5v70.448h-28.312ZM222.077 39.192l-8.019 125.923L137.387 0l84.69 39.192Zm-53.105 162.825-57.933 33.056-57.934-33.056 11.783-28.556h92.301l11.783 28.556ZM111.039 62.675l30.357 73.803H80.681l30.358-73.803ZM7.937 165.115 0 39.192 84.69 0 7.937 165.115Z"
|
||||
/>
|
||||
</g>
|
||||
<defs>
|
||||
<radialGradient
|
||||
id="c"
|
||||
cx="0"
|
||||
cy="0"
|
||||
r="1"
|
||||
gradientTransform="rotate(118.122 171.182 60.81) scale(205.794)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
>
|
||||
<stop stop-color="#FF41F8" />
|
||||
<stop offset=".707" stop-color="#FF41F8" stop-opacity=".5" />
|
||||
<stop offset="1" stop-color="#FF41F8" stop-opacity="0" />
|
||||
</radialGradient>
|
||||
<linearGradient
|
||||
id="b"
|
||||
x1="0"
|
||||
x2="982"
|
||||
y1="192"
|
||||
y2="192"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
>
|
||||
<stop stop-color="#F0060B" />
|
||||
<stop offset="0" stop-color="#F0070C" />
|
||||
<stop offset=".526" stop-color="#CC26D5" />
|
||||
<stop offset="1" stop-color="#7702FF" />
|
||||
</linearGradient>
|
||||
<clipPath id="a"><path fill="#fff" d="M0 0h982v239H0z" /></clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
<h1>Hello, {{ title }}</h1>
|
||||
<p>Congratulations! Your app is running. 🎉</p>
|
||||
</div>
|
||||
<div class="divider" role="separator" aria-label="Divider"></div>
|
||||
<div class="right-side">
|
||||
<div class="pill-group">
|
||||
@for (item of [
|
||||
{ title: 'Explore the Docs', link: 'https://angular.dev' },
|
||||
{ title: 'Learn with Tutorials', link: 'https://angular.dev/tutorials' },
|
||||
{ title: 'CLI Docs', link: 'https://angular.dev/tools/cli' },
|
||||
{ title: 'Angular Language Service', link: 'https://angular.dev/tools/language-service' },
|
||||
{ title: 'Angular DevTools', link: 'https://angular.dev/tools/devtools' },
|
||||
]; track item.title) {
|
||||
<a
|
||||
class="pill"
|
||||
[href]="item.link"
|
||||
target="_blank"
|
||||
rel="noopener"
|
||||
>
|
||||
<span>{{ item.title }}</span>
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
height="14"
|
||||
viewBox="0 -960 960 960"
|
||||
width="14"
|
||||
fill="currentColor"
|
||||
>
|
||||
<path
|
||||
d="M200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h280v80H200v560h560v-280h80v280q0 33-23.5 56.5T760-120H200Zm188-212-56-56 372-372H560v-80h280v280h-80v-144L388-332Z"
|
||||
/>
|
||||
</svg>
|
||||
<nav>
|
||||
<a href="" class="top-logo">
|
||||
<img src="assets/img/nir_logo_top.svg">
|
||||
</a>
|
||||
}
|
||||
</div>
|
||||
<div class="social-links">
|
||||
<a
|
||||
href="https://github.com/angular/angular"
|
||||
aria-label="Github"
|
||||
target="_blank"
|
||||
rel="noopener"
|
||||
>
|
||||
<svg
|
||||
width="25"
|
||||
height="24"
|
||||
viewBox="0 0 25 24"
|
||||
fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
alt="Github"
|
||||
>
|
||||
<path
|
||||
d="M12.3047 0C5.50634 0 0 5.50942 0 12.3047C0 17.7423 3.52529 22.3535 8.41332 23.9787C9.02856 24.0946 9.25414 23.7142 9.25414 23.3871C9.25414 23.0949 9.24389 22.3207 9.23876 21.2953C5.81601 22.0377 5.09414 19.6444 5.09414 19.6444C4.53427 18.2243 3.72524 17.8449 3.72524 17.8449C2.61064 17.082 3.81137 17.0973 3.81137 17.0973C5.04697 17.1835 5.69604 18.3647 5.69604 18.3647C6.79321 20.2463 8.57636 19.7029 9.27978 19.3881C9.39052 18.5924 9.70736 18.0499 10.0591 17.7423C7.32641 17.4347 4.45429 16.3765 4.45429 11.6618C4.45429 10.3185 4.9311 9.22133 5.72065 8.36C5.58222 8.04931 5.16694 6.79833 5.82831 5.10337C5.82831 5.10337 6.85883 4.77319 9.2121 6.36459C10.1965 6.09082 11.2424 5.95546 12.2883 5.94931C13.3342 5.95546 14.3801 6.09082 15.3644 6.36459C17.7023 4.77319 18.7328 5.10337 18.7328 5.10337C19.3942 6.79833 18.9789 8.04931 18.8559 8.36C19.6403 9.22133 20.1171 10.3185 20.1171 11.6618C20.1171 16.3888 17.2409 17.4296 14.5031 17.7321C14.9338 18.1012 15.3337 18.8559 15.3337 20.0084C15.3337 21.6552 15.3183 22.978 15.3183 23.3779C15.3183 23.7009 15.5336 24.0854 16.1642 23.9623C21.0871 22.3484 24.6094 17.7341 24.6094 12.3047C24.6094 5.50942 19.0999 0 12.3047 0Z"
|
||||
/>
|
||||
</svg>
|
||||
</a>
|
||||
<a
|
||||
href="https://twitter.com/angular"
|
||||
aria-label="Twitter"
|
||||
target="_blank"
|
||||
rel="noopener"
|
||||
>
|
||||
<svg
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 24 24"
|
||||
fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
alt="Twitter"
|
||||
>
|
||||
<path
|
||||
d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"
|
||||
/>
|
||||
</svg>
|
||||
</a>
|
||||
<a
|
||||
href="https://www.youtube.com/channel/UCbn1OgGei-DV7aSRo_HaAiw"
|
||||
aria-label="Youtube"
|
||||
target="_blank"
|
||||
rel="noopener"
|
||||
>
|
||||
<svg
|
||||
width="29"
|
||||
height="20"
|
||||
viewBox="0 0 29 20"
|
||||
fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
alt="Youtube"
|
||||
>
|
||||
<path
|
||||
fill-rule="evenodd"
|
||||
clip-rule="evenodd"
|
||||
d="M27.4896 1.52422C27.9301 1.96749 28.2463 2.51866 28.4068 3.12258C29.0004 5.35161 29.0004 10 29.0004 10C29.0004 10 29.0004 14.6484 28.4068 16.8774C28.2463 17.4813 27.9301 18.0325 27.4896 18.4758C27.0492 18.9191 26.5 19.2389 25.8972 19.4032C23.6778 20 14.8068 20 14.8068 20C14.8068 20 5.93586 20 3.71651 19.4032C3.11363 19.2389 2.56449 18.9191 2.12405 18.4758C1.68361 18.0325 1.36732 17.4813 1.20683 16.8774C0.613281 14.6484 0.613281 10 0.613281 10C0.613281 10 0.613281 5.35161 1.20683 3.12258C1.36732 2.51866 1.68361 1.96749 2.12405 1.52422C2.56449 1.08095 3.11363 0.76113 3.71651 0.596774C5.93586 0 14.8068 0 14.8068 0C14.8068 0 23.6778 0 25.8972 0.596774C26.5 0.76113 27.0492 1.08095 27.4896 1.52422ZM19.3229 10L11.9036 5.77905V14.221L19.3229 10Z"
|
||||
/>
|
||||
<div class="nav-items" [class.nav-hide]="!navShow">
|
||||
<a href routerLink="about" routerLinkActive="active" (click)="navShow = false">О нас</a>
|
||||
<a href routerLink="automatization" routerLinkActive="active" (click)="navShow = false">Автоматизация</a>
|
||||
<a href routerLink="sites" routerLinkActive="active" (click)="navShow = false">Сайты</a>
|
||||
<a href routerLink="development" routerLinkActive="active" (click)="navShow = false">Разработка</a>
|
||||
<a href routerLink="projects" routerLinkActive="active" (click)="navShow = false">Проекты</a>
|
||||
<a href routerLink="contacts" routerLinkActive="active" (click)="navShow = false">Контакты</a>
|
||||
<a href="tel:+74994900465" class="right tel">
|
||||
<svg>
|
||||
<use href="assets/ico/call_24.svg#ico"></use>
|
||||
</svg>
|
||||
+7 (499) 490-04-65
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
</nav>
|
||||
|
||||
<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * -->
|
||||
<!-- * * * * * * * * * * * The content above * * * * * * * * * * * * -->
|
||||
<!-- * * * * * * * * * * is only a placeholder * * * * * * * * * * * -->
|
||||
<!-- * * * * * * * * * * and can be replaced. * * * * * * * * * * * -->
|
||||
<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * -->
|
||||
<!-- * * * * * * * * * * End of Placeholder * * * * * * * * * * * * -->
|
||||
<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * -->
|
||||
<a href="tel:+74994900465" class="right">
|
||||
<svg>
|
||||
<use href="assets/ico/call_24.svg#ico"></use>
|
||||
</svg>
|
||||
+7 (499) 490-04-65
|
||||
</a>
|
||||
|
||||
<button class="header-burger" (click)="navShow = !navShow">
|
||||
<svg>
|
||||
<use href="assets/ico/burger_24.svg#ico"></use>
|
||||
</svg>
|
||||
</button>
|
||||
</header>
|
||||
|
||||
|
||||
<router-outlet />
|
||||
|
||||
<div class="row nowrap">
|
||||
<div class="card bg-black-lt">
|
||||
<div class="banner">
|
||||
<div class="banner-text">
|
||||
<h2>Остались вопросы?</h2>
|
||||
<div>Мы с радостью на них ответим!</div>
|
||||
<!-- <request>
|
||||
<button class="btn white">Напишите нам</button>
|
||||
</request> -->
|
||||
</div>
|
||||
<div class="banner-img"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<footer class="row">
|
||||
<div class="footer-main">
|
||||
<div class="logo">
|
||||
<img src="assets/img/nir_logo_footer.svg">
|
||||
</div>
|
||||
<div class="footer-nav">
|
||||
<h4>Разделы</h4>
|
||||
<a href routerLink="about">О нас</a>
|
||||
<a href routerLink="automatization">Автоматизация</a>
|
||||
<a href routerLink="sites">Сайты</a>
|
||||
<a href routerLink="development">Разработка</a>
|
||||
<a href routerLink="projects">Проекты</a>
|
||||
<a href routerLink="contacts">Контакты</a>
|
||||
</div>
|
||||
<div class="footer-info">
|
||||
<h4>Контакты</h4>
|
||||
<a href="tel:+74994900465">
|
||||
<svg>
|
||||
<use href="assets/ico/call_24.svg#ico"></use>
|
||||
</svg>
|
||||
+7 (499) 490-04-65
|
||||
</a>
|
||||
<a href="mailto:info@nirgroup.ru">
|
||||
<svg>
|
||||
<use href="assets/ico/mail_24.svg#ico"></use>
|
||||
</svg>
|
||||
info@nirgroup.ru
|
||||
</a>
|
||||
<a href="contacts">
|
||||
<svg>
|
||||
<use href="assets/ico/pin_drop_24.svg#ico"></use>
|
||||
</svg>
|
||||
121170, г. Москва, Кутузовский проспект, д. 36, стр. 3, офис 222
|
||||
</a>
|
||||
<a >
|
||||
<svg>
|
||||
<use href="assets/ico/webpage_24.svg#ico"></use>
|
||||
</svg>
|
||||
<!-- <request>Напишите нам</request> -->
|
||||
|
||||
</a>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="copyright">
|
||||
© ООО «НИР», 2016–{{dateNow | date:'YYYY'}}
|
||||
</div>
|
||||
|
||||
</footer>
|
||||
|
|
|
|||
|
|
@ -0,0 +1,243 @@
|
|||
header{
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
padding-inline: calc((100% - 1380px) / 2);
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
height: 80px;
|
||||
background-color: #FFF;
|
||||
z-index: 20;
|
||||
border-bottom: 1px solid var(--clr-gr);
|
||||
box-shadow: 0px 20px 40px 0px rgba(255, 255, 255, 0.5);
|
||||
box-sizing: border-box;
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
line-height: 24px;
|
||||
>.header-burger{
|
||||
display: none;
|
||||
}
|
||||
|
||||
a{
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
nav{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
a{
|
||||
color: var(--clr-black-lt);
|
||||
text-decoration: none;
|
||||
padding: 29px 10px;
|
||||
&.active{
|
||||
// padding-bottom: 26px;
|
||||
margin-bottom: -1px;
|
||||
border-bottom: 2px solid var(--clr-primary);
|
||||
}
|
||||
&.tel{
|
||||
display: none;
|
||||
}
|
||||
&.top-logo{
|
||||
margin-right: 30px;
|
||||
padding: 0;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.right{
|
||||
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
color: var(--clr-black);
|
||||
font-variant-numeric: lining-nums tabular-nums;
|
||||
line-height: 24px;
|
||||
margin-right: 30px;
|
||||
};
|
||||
}
|
||||
|
||||
router-outlet{
|
||||
margin-top: 80px;
|
||||
}
|
||||
|
||||
.banner{
|
||||
display: flex;
|
||||
padding-block: 30px;
|
||||
|
||||
>div{
|
||||
flex: 1 1 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 20px;
|
||||
align-items: flex-start;
|
||||
>*{ box-sizing: border-box;}
|
||||
|
||||
}
|
||||
.banner-img{
|
||||
border-radius: 16px;
|
||||
background-image: url("../assets/img/banner.jpg");
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
}
|
||||
}
|
||||
|
||||
footer{
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
background-color: var(--clr-gr-lt);
|
||||
padding-block: 60px;
|
||||
margin-top: 60px;
|
||||
.footer-main{
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
a{
|
||||
color: var(--clr-black);
|
||||
text-decoration: none;
|
||||
display: flex;
|
||||
gap: 16px;
|
||||
svg{
|
||||
flex-shrink: 0;
|
||||
color: var(--clr-black-lt);
|
||||
}
|
||||
}
|
||||
>div{
|
||||
flex: 1 1 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 16px;
|
||||
}
|
||||
.logo img{
|
||||
width: 152px;
|
||||
height: 152px;
|
||||
}
|
||||
}
|
||||
.copyright{
|
||||
border-top: 1px solid var(--clr-gr);
|
||||
margin-top: 30px;
|
||||
padding-top: 30px;
|
||||
font-size: 16px;
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
line-height: 24px;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@media screen and (min-width: 1025px){
|
||||
header{
|
||||
.top-logo{
|
||||
margin-left: 30px;
|
||||
}
|
||||
}
|
||||
.banner{
|
||||
.banner-img{
|
||||
max-height: calc(50vw - 30px);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 1024px) {
|
||||
|
||||
header{
|
||||
padding-inline: 48px 55px;
|
||||
.header-shadow{
|
||||
width: 100vw;
|
||||
height: calc(100vh - 80px);
|
||||
position:fixed;
|
||||
top: 80px;
|
||||
left: 0;
|
||||
background-color: var(--clr-black-lt);
|
||||
}
|
||||
>.header-burger{
|
||||
display: block;
|
||||
border: none;
|
||||
background-color: transparent;
|
||||
color: var(--clr-black-lt);
|
||||
cursor: pointer;
|
||||
}
|
||||
nav{
|
||||
.nav-items{
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
position: absolute;
|
||||
top: 79px;
|
||||
left:0;
|
||||
gap: 24px;
|
||||
background-color: #FFF;
|
||||
width: 100vw;
|
||||
align-items: flex-start;
|
||||
padding: 30px 24px 30px;
|
||||
border-bottom: 1px solid var(--clr-gr);
|
||||
a{
|
||||
padding: 0px;
|
||||
&.tel{
|
||||
display: flex;
|
||||
margin-top: 30px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.nav-hide{
|
||||
display: none
|
||||
}
|
||||
|
||||
}
|
||||
.right{
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.banner{
|
||||
display: flex;
|
||||
flex-direction: column-reverse;
|
||||
padding: 0;
|
||||
|
||||
.banner-text{
|
||||
margin-block: 40px 20px;
|
||||
|
||||
}
|
||||
.banner-img{
|
||||
flex:auto;
|
||||
aspect-ratio: 21/16;
|
||||
margin-left: -20px;
|
||||
margin-top: -15px;
|
||||
width: calc(100% + 40px);
|
||||
height: calc(50vw - 30px);
|
||||
background-image: url("../assets/img/banner.jpg");
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
border-radius: 0;
|
||||
}
|
||||
}
|
||||
|
||||
footer{
|
||||
|
||||
.footer-main{
|
||||
flex-direction: column;
|
||||
gap: 30px;
|
||||
.footer-info{
|
||||
padding-inline: 30px 15px;
|
||||
}
|
||||
.logo{
|
||||
margin-left: 15px;
|
||||
}
|
||||
.footer-nav{
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
.copyright{
|
||||
padding-inline: 15px;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 768px) {
|
||||
header{
|
||||
padding-inline: 4px 10px;
|
||||
}
|
||||
}
|
||||
|
|
@ -1,13 +1,33 @@
|
|||
import { Component } from '@angular/core';
|
||||
import { RouterOutlet } from '@angular/router';
|
||||
import { DatePipe, ViewportScroller } from '@angular/common';
|
||||
import { RouterOutlet, NavigationEnd, Router } from '@angular/router';
|
||||
|
||||
@Component({
|
||||
selector: 'app-root',
|
||||
standalone: true,
|
||||
imports: [RouterOutlet],
|
||||
imports: [RouterOutlet, DatePipe],
|
||||
templateUrl: './app.component.html',
|
||||
styleUrl: './app.component.scss'
|
||||
})
|
||||
export class AppComponent {
|
||||
title = 'render';
|
||||
|
||||
|
||||
title = 'NIR';
|
||||
dateNow?: Date;
|
||||
navShow = false;
|
||||
|
||||
ngOnInit(){
|
||||
this.dateNow = new Date;
|
||||
}
|
||||
|
||||
constructor(
|
||||
readonly router: Router,
|
||||
readonly viewportScroller: ViewportScroller,
|
||||
) {
|
||||
|
||||
router.events.subscribe((event) => {
|
||||
if (event instanceof NavigationEnd) this.viewportScroller.scrollToPosition([0, 0]);
|
||||
});
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,9 +1,14 @@
|
|||
import { ApplicationConfig, provideZoneChangeDetection } from '@angular/core';
|
||||
import { provideRouter } from '@angular/router';
|
||||
|
||||
import { provideHttpClient } from '@angular/common/http';
|
||||
import { routes } from './app.routes';
|
||||
import { provideClientHydration } from '@angular/platform-browser';
|
||||
|
||||
export const appConfig: ApplicationConfig = {
|
||||
providers: [provideZoneChangeDetection({ eventCoalescing: true }), provideRouter(routes), provideClientHydration()]
|
||||
providers: [
|
||||
provideZoneChangeDetection({ eventCoalescing: true }),
|
||||
provideRouter(routes),
|
||||
provideClientHydration(),
|
||||
provideHttpClient(),
|
||||
]
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
import { Routes } from '@angular/router';
|
||||
import { HomeComponent } from './home/home.component';
|
||||
|
||||
export const routes: Routes = [];
|
||||
export const routes: Routes = [
|
||||
{path: "", component: HomeComponent},
|
||||
];
|
||||
|
|
|
|||
|
|
@ -0,0 +1,135 @@
|
|||
<div class="row jumb">
|
||||
<div class="col-6">
|
||||
<h1>Создаем<br>ИТ‑инструменты под Ваши задачи</h1>
|
||||
<h5 class="jumb-slogan">
|
||||
​
|
||||
</h5>
|
||||
<request>
|
||||
<button class="btn primary">Напишите нам</button>
|
||||
</request>
|
||||
</div>
|
||||
<div class="col-6">
|
||||
<img class="jumb-card" src="assets/img/home.jpg" alt="">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-4">
|
||||
<h2>Кто мы</h2>
|
||||
</div>
|
||||
<div class="col-8">
|
||||
ООО «НИР» — российская ИТ-компания, специализирующаяся на разработке импортонезависимого ПО и автоматизации сложных процессов. С 2016 года мы беремся за самые амбициозные проекты и выполняем их точно в срок.
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row bg-light">
|
||||
<div class="col-4">
|
||||
<h2>Наши преимущества</h2>
|
||||
</div>
|
||||
<div class="col-8">
|
||||
Мы верим, что рабочие программы и сайты могут быть удобными, красивыми и полностью выполнять стоящие перед ними задачи. Поэтому мы создаем их именно такими.
|
||||
</div>
|
||||
<div class="col-12 card bg-white facts">
|
||||
<div>
|
||||
<h2 class="primary">8 лет</h2>
|
||||
на рынке
|
||||
</div>
|
||||
<div>
|
||||
<h2 class="primary">100+</h2>
|
||||
реализованных проектов
|
||||
</div>
|
||||
<div>
|
||||
<h2 class="primary">500+</h2>
|
||||
компаний-пользователей
|
||||
</div>
|
||||
<div>
|
||||
<h2 class="primary">№ 12571</h2>
|
||||
Аккредитация в Минцифры
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-12 center">
|
||||
<h2>Наши услуги</h2>
|
||||
</div>
|
||||
<div class="col col-4 card-sm bg-primary" >
|
||||
<h3>Автоматизация</h3>
|
||||
<div>Автоматизируем рутину, любые процессы и задачи</div>
|
||||
<a class="btn white" routerLink="../automatization">Подробнее</a>
|
||||
</div>
|
||||
<div class="col col-4 card-sm bg-light" >
|
||||
<h3>Заказная разработка</h3>
|
||||
<div>Создание ПО любой сложности</div>
|
||||
<a class="btn white" routerLink="../development">Подробнее</a>
|
||||
</div>
|
||||
<div class="col col-4 card-sm bg-black-lt" >
|
||||
<h3>Нагруженные сайты</h3>
|
||||
<div>Специализированные сайты для работы с большим количеством информации и документов</div>
|
||||
<a class="btn white" routerLink="../sites">Подробнее</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col col-8">
|
||||
<h2>Проекты и рекомендации</h2>
|
||||
<div>Нашими решениями ежедневно пользуются представители крупнейших компаний и государственных учреждений</div>
|
||||
<a class="btn white" routerLink="../projects">Перейти</a>
|
||||
</div>
|
||||
<div class="col-12 facts facts-logo">
|
||||
<div>
|
||||
<img src="assets/img/logo_tk23.svg" alt="">
|
||||
</div>
|
||||
<div>
|
||||
<img src="assets/img/logo_vniigazcert.svg" alt="">
|
||||
</div>
|
||||
<div>
|
||||
<img src="assets/img/logo_fcns.svg" alt="">
|
||||
</div>
|
||||
<div>
|
||||
<img src="assets/img/logo_igc.png" alt="">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="row howork bg-light">
|
||||
<div class="col-6 howork-left">
|
||||
<div></div>
|
||||
<div></div>
|
||||
<div></div>
|
||||
<div></div>
|
||||
<div></div>
|
||||
<div></div>
|
||||
</div>
|
||||
<div class="col-6 howork-right">
|
||||
<h2>Как мы работаем</h2>
|
||||
<div class="howork-item" *ngFor="let item of menu" (click)="select(item.number)">
|
||||
<h5 class="howork-number">{{item.number}}</h5>
|
||||
<div class="howork-caption">
|
||||
<h5>{{item.header}}</h5>
|
||||
<div [hidden]="hide(item.number)">{{item.caption}}</div>
|
||||
<div [hidden]="hide(item.number)" class="timing">{{item.timing}}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="row">
|
||||
<!-- <div class="container">
|
||||
<h1>Swiper Elements</h1>
|
||||
<swiper-container>
|
||||
<swiper-slide>Slide 1</swiper-slide>
|
||||
<swiper-slide>Slide 2</swiper-slide>
|
||||
<swiper-slide>Slide 3</swiper-slide>
|
||||
<swiper-slide>Slide 4</swiper-slide>
|
||||
</swiper-container>
|
||||
</div> -->
|
||||
|
||||
<reviews></reviews>
|
||||
</div>
|
||||
|
|
@ -0,0 +1,150 @@
|
|||
.facts{
|
||||
margin-top: 30px;
|
||||
}
|
||||
.card-sm{
|
||||
margin-top: 30px;
|
||||
}
|
||||
.facts-logo div{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
|
||||
.howork{
|
||||
.howork-left{
|
||||
border-radius: 16px;
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
background-image: url("/assets/img/about-howork.jpg");
|
||||
aspect-ratio: 582 / 642;
|
||||
height: 642px;
|
||||
display: flex;
|
||||
flex-direction: column-reverse;
|
||||
flex-wrap: wrap;
|
||||
gap: 30px;
|
||||
>div{
|
||||
width: calc(50% - 15px);
|
||||
box-shadow: 0 0 0 30px var(--clr-gr-lt);
|
||||
border-radius: 16px;
|
||||
aspect-ratio: 1;
|
||||
&:first-child, &:last-child{
|
||||
width: auto;
|
||||
margin-bottom: auto;
|
||||
background-color: var(--clr-gr-lt);
|
||||
aspect-ratio: none;
|
||||
flex-grow: 1;
|
||||
flex-shrink: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
.howork-right{
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
gap: 60px;
|
||||
.howork-item{
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: 30px;
|
||||
cursor: pointer;
|
||||
.howork-caption{
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
gap: 10px;
|
||||
.timing{
|
||||
color: var(--Primary-1D45F0, #1D45F0);
|
||||
font-size: 20px;
|
||||
font-weight: 600;
|
||||
line-height: 28px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 1240px){
|
||||
.howork{
|
||||
.howork-left{
|
||||
height: 135%;
|
||||
width: 100%;
|
||||
}
|
||||
.howork-right{
|
||||
gap: 30px;
|
||||
h5{
|
||||
margin-block: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@media screen and (max-width: 1024px){
|
||||
.jumb-slogan{
|
||||
margin-block: 0;
|
||||
}
|
||||
|
||||
.facts{
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.howork{
|
||||
.howork-left{
|
||||
height: 105vw;
|
||||
width: 100%;
|
||||
|
||||
}
|
||||
.howork-right{
|
||||
gap: 30px;
|
||||
.howork-item{
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: 30px;
|
||||
cursor: pointer;
|
||||
h5{
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.container {
|
||||
max-width: 800px;
|
||||
margin: 32px auto;
|
||||
|
||||
h1 {
|
||||
text-align: center;
|
||||
|
||||
}
|
||||
|
||||
swiper-slide {
|
||||
text-align: center;
|
||||
font-size: 24px;
|
||||
border-radius: 24px;
|
||||
padding: 16px 0;
|
||||
height: 400px;
|
||||
|
||||
|
||||
&:nth-of-type(1) {
|
||||
background-color: #780000;
|
||||
color: white
|
||||
}
|
||||
|
||||
&:nth-of-type(2) {
|
||||
background-color: #fdf0d5;
|
||||
}
|
||||
|
||||
&:nth-of-type(3) {
|
||||
background-color: #003049;
|
||||
color: white;
|
||||
}
|
||||
|
||||
&:nth-of-type(4) {
|
||||
background-color: #669bbc;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { HomeComponent } from './home.component';
|
||||
|
||||
describe('HomeComponent', () => {
|
||||
let component: HomeComponent;
|
||||
let fixture: ComponentFixture<HomeComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [HomeComponent]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(HomeComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
|
|
@ -0,0 +1,63 @@
|
|||
import { NgFor } from '@angular/common';
|
||||
import { Component, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
||||
import { RequestComponent } from '../request/request.component';
|
||||
import { ReviewsComponent } from '../reviews/reviews.component';
|
||||
|
||||
@Component({
|
||||
selector: 'home',
|
||||
standalone: true,
|
||||
imports: [NgFor, RequestComponent, ReviewsComponent],
|
||||
templateUrl: './home.component.html',
|
||||
styleUrl: './home.component.scss',
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
||||
})
|
||||
export class HomeComponent {
|
||||
// constructor(private seo:SEOService){}
|
||||
|
||||
public act: number = 1;
|
||||
|
||||
public menu = [
|
||||
{
|
||||
number: 1,
|
||||
header:'Знакомство',
|
||||
caption:'Мы встречаемся с Вами, обсуждаем задачи, визуализируем процессы и готовим КП',
|
||||
timing:'2 недели'
|
||||
},
|
||||
{
|
||||
number: 2,
|
||||
header:'Погружение в детали',
|
||||
caption:'Составление ТЗ и договора, согласование и подписание',
|
||||
timing:'1–2 недели'
|
||||
},
|
||||
{
|
||||
number: 3,
|
||||
header:'Внутренние работы',
|
||||
caption:'Нашу работу не видно. Проектирование и создание архитектуры системы, оцифровка процессов, создание технического интерфейса.',
|
||||
timing:'4–10 недель'
|
||||
},
|
||||
{
|
||||
number: 4,
|
||||
header:'Внешние работы',
|
||||
caption:'Нашу работу уже можно посмотреть. Создание пользовательского интерфейса, предоставление системы для тестирования, внесение правок после теста.',
|
||||
timing:'2–5 недель'
|
||||
},
|
||||
{
|
||||
number: 5,
|
||||
header:'Завершение работ',
|
||||
caption:'Сдаем готовый продукт, помогаем с его вводом в эксплуатацию, отвечаем на возникающие вопросы',
|
||||
timing:'до 2 недель'
|
||||
},
|
||||
]
|
||||
|
||||
select(i:number){
|
||||
if (i==this.act) {
|
||||
this.act = 0
|
||||
} else {
|
||||
this.act = i
|
||||
}
|
||||
}
|
||||
|
||||
hide(i:number){
|
||||
return i!=this.act
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,43 @@
|
|||
<div class="activator" (click)="open()">
|
||||
<ng-content></ng-content>
|
||||
</div>
|
||||
|
||||
<div class="block" [style.display]="hidden?'none':'flex'">
|
||||
<form [formGroup]="feedbackForm">
|
||||
<div class="card">
|
||||
<h3>Обратная связь</h3>
|
||||
<button class="close" (click)="close()">
|
||||
<svg>
|
||||
<use href="assets/ico/close_24.svg#ico"></use>
|
||||
</svg>
|
||||
</button>
|
||||
<div>Расскажите о своем проекте. Мы ответим в течение одного рабочего дня.</div>
|
||||
<div class="field">
|
||||
<label for="name">Как к вам обращаться</label>
|
||||
<input type="text" name="name" formControlName="feedback-name" #name>
|
||||
</div>
|
||||
<div class="field">
|
||||
<label for="mail">Электронная почта</label>
|
||||
<input type="text" name="mail" formControlName="feedback-email" #mail>
|
||||
</div>
|
||||
<div class="field tel">
|
||||
<label for="tel">Телефон</label>
|
||||
<input type="text" name="tel" formControlName="feedback-number">
|
||||
</div>
|
||||
<div class="field tel">
|
||||
<label for="tel2">Добавочный (если есть)</label>
|
||||
<input type="text" name="tel2" formControlName="feedback-add-number">
|
||||
</div>
|
||||
<div class="field">
|
||||
<label for="issue">Краткое описание задачи</label>
|
||||
<textarea name="issue" rows="5" formControlName="feedback-message" #issue></textarea>
|
||||
</div>
|
||||
<button class="btn white submit" (click)="close()">
|
||||
ОТМЕНИТЬ
|
||||
</button>
|
||||
<button class="btn primary submit" (click)="onSubmit()" [disabled]="feedbackForm.invalid" >
|
||||
отправить
|
||||
</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
|
@ -0,0 +1,82 @@
|
|||
|
||||
|
||||
.activator{
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.block{
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
position:fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
background-color: var(--clr-black-lt);
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
z-index: 1000;
|
||||
|
||||
.card{
|
||||
color: var(--neutrals-black-88, rgba(0, 0, 0, 0.88));
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
line-height: 24px;
|
||||
text-transform: none;
|
||||
padding: 30px;
|
||||
background-color: #FFF;
|
||||
width: 600px;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap:20px;
|
||||
.submit{
|
||||
flex: 1 1 40%;
|
||||
margin-top: 10px;
|
||||
}
|
||||
}
|
||||
.field{
|
||||
flex: 1 1 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 4px;
|
||||
label{
|
||||
color: var(--clr-black-lt);
|
||||
}
|
||||
input, textarea{
|
||||
padding: 20px;
|
||||
border-radius: 4px;
|
||||
border: 1px solid var(--clr-gr);
|
||||
resize: none;
|
||||
&.ng-untouched.ng-invalid{
|
||||
box-shadow: 0px 0px 0px 2px var(--clr-warning);
|
||||
}
|
||||
&.ng-touched.ng-invalid{
|
||||
box-shadow: 0px 0px 0px 2px var(--clr-danger);
|
||||
}
|
||||
}
|
||||
}
|
||||
.tel{
|
||||
flex-basis: 40%;
|
||||
}
|
||||
.close{
|
||||
background-color: transparent;
|
||||
border: none;
|
||||
margin-left: auto;
|
||||
color: var(--clr-black-lt);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@media screen and (max-width: 1024px){
|
||||
.block{
|
||||
overflow-y: scroll;
|
||||
display: block;
|
||||
.card{
|
||||
width: auto;
|
||||
border-radius: 0;
|
||||
max-width: 600px;
|
||||
margin: auto;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { RequestComponent } from './request.component';
|
||||
|
||||
describe('RequestComponent', () => {
|
||||
let component: RequestComponent;
|
||||
let fixture: ComponentFixture<RequestComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [RequestComponent]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(RequestComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
|
|
@ -0,0 +1,49 @@
|
|||
import { Component, OnInit } from '@angular/core';
|
||||
import { FormsService } from '../_services/forms.service';
|
||||
import {FormGroup, ReactiveFormsModule, FormBuilder, Validators} from "@angular/forms";
|
||||
|
||||
@Component({
|
||||
selector: 'request',
|
||||
standalone: true,
|
||||
imports: [ReactiveFormsModule],
|
||||
templateUrl: './request.component.html',
|
||||
styleUrl: './request.component.scss'
|
||||
})
|
||||
export class RequestComponent implements OnInit {
|
||||
public hidden = true;
|
||||
public feedbackForm: FormGroup;
|
||||
|
||||
constructor(private formBuilder:FormBuilder, private formsService: FormsService) {
|
||||
}
|
||||
|
||||
ngOnInit():void{
|
||||
this.feedbackForm = this.formBuilder.group({
|
||||
'feedback-name':['',Validators.required],
|
||||
'feedback-email':['',[Validators.required,Validators.email]],
|
||||
'feedback-number':[''],
|
||||
'feedback-add-number':[''],
|
||||
'feedback-message':['',Validators.required],
|
||||
mailto:['test@nirgroup.ru'],
|
||||
type:['feedback-form-support']
|
||||
});
|
||||
}
|
||||
|
||||
open(){
|
||||
this.hidden = false;
|
||||
this.ngOnInit()
|
||||
}
|
||||
|
||||
close(){
|
||||
this.feedbackForm.reset();
|
||||
this.hidden = true;
|
||||
}
|
||||
|
||||
onSubmit(){
|
||||
this.feedbackForm.markAllAsTouched();
|
||||
if (this.feedbackForm.valid) this.formsService.save('model', 'feedback-form-support', null, this.feedbackForm.value).subscribe(res => {
|
||||
this.close()
|
||||
}, error => {
|
||||
console.log(error);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,63 @@
|
|||
<div class="reviews-header center">
|
||||
<h2>Благодарности</h2>
|
||||
</div>
|
||||
|
||||
<swiper-container #desktopSwiper class="desktop" slides-per-view="2" space-between="30" keyboard="true" mousewheel="true" pagination-enabled="true" pagination-type="fraction" pagination-el=".reviews-navigation-counter" navigation-next-el=".reviews-button-next" navigation-prev-el=".reviews-button-prev" [loop]="true">
|
||||
<swiper-slide *ngFor="let rev of reviews">
|
||||
<div class="reviews">
|
||||
<div class="reviews-img">
|
||||
<img [src]="rev.img" (click)="select(rev.img)">
|
||||
</div>
|
||||
<div class="reviews-text">
|
||||
<h5>{{rev.header}}</h5>
|
||||
<div>{{rev.txt}}</div>
|
||||
<div class="reviews-author">{{rev.name}}</div>
|
||||
<div class="reviews-post">{{rev.post}}</div>
|
||||
</div>
|
||||
</div>
|
||||
</swiper-slide>
|
||||
</swiper-container>
|
||||
|
||||
<swiper-container #mobileSwiper class="mobile" (swiperslidechange)="onSlideChange($event)" pagination-enabled="true" pagination-type="fraction" pagination-el=".reviews-navigation-counter" navigation-next-el=".reviews-button-next" keyboard="true" mousewheel="true" navigation-next-el=".reviews-button-next" navigation-prev-el=".reviews-button-prev" [loop]="true" speed="500" autoplay.delay="2500" autoplay.disableOnInteraction="true">
|
||||
<swiper-slide swiperSlide *ngFor="let rev of reviews; let i = index;">
|
||||
<div class="reviews">
|
||||
<div class="reviews-img">
|
||||
<img [src]="rev.img" (click)="select(rev.img)">
|
||||
</div>
|
||||
<div class="reviews-text">
|
||||
</div>
|
||||
</div>
|
||||
</swiper-slide>
|
||||
</swiper-container>
|
||||
|
||||
|
||||
<div class="reviews-navigation">
|
||||
<button class="reviews-button-prev">
|
||||
<svg>
|
||||
<use href="assets/ico/chevron_left_big_24.svg#ico"></use>
|
||||
</svg>
|
||||
</button>
|
||||
<div class="reviews-navigation-counter"></div>
|
||||
<button class="reviews-button-next">
|
||||
<svg>
|
||||
<use href="assets/ico/chevron_right_big_24.svg#ico"></use>
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<swiper-container class="mobile" #mobileText slides-per-view="1" space-between="30" keyboard="false" mousewheel="false" speed="0" allow-touch-move (swiperinit)="onSwiperInit()" >
|
||||
<swiper-slide swiperSlide *ngFor="let rev of reviews; let i = index;">
|
||||
<div class="reviews">
|
||||
<div class="reviews-text">
|
||||
<h5>{{rev.header}}</h5>
|
||||
<div>{{rev.txt}}</div>
|
||||
<div class="reviews-author">{{rev.name}}</div>
|
||||
<div class="reviews-post">{{rev.post}}</div>
|
||||
</div>
|
||||
</div>
|
||||
</swiper-slide>
|
||||
</swiper-container>
|
||||
|
||||
<div *ngIf="img" class="reviews-select" (click)="img=null">
|
||||
<img [src]="img" alt="">
|
||||
</div>
|
||||
|
|
@ -0,0 +1,140 @@
|
|||
:host{
|
||||
width: 100%;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.reviews-header{
|
||||
margin-bottom: 60px;
|
||||
}
|
||||
|
||||
swiper{
|
||||
cursor: w-resize;
|
||||
width: 1194px;
|
||||
}
|
||||
|
||||
.reviews{
|
||||
|
||||
|
||||
display: flex;
|
||||
gap: 30px;
|
||||
.reviews-img{
|
||||
img{
|
||||
width: 120px;
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
.reviews-text{
|
||||
h5{
|
||||
margin-block: 0 10px;
|
||||
}
|
||||
.reviews-author{
|
||||
margin-top: 30px;
|
||||
font-size: 16px;
|
||||
font-weight: 600;
|
||||
line-height: 24px;
|
||||
}
|
||||
.reviews-post{
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
line-height: 24px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.reviews-select{
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
position:fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
background-color: var(--clr-black-lt);
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
z-index: 20;
|
||||
cursor: pointer;
|
||||
img{
|
||||
max-width: calc(100% - 30px);
|
||||
max-height: calc(100% - 30px);
|
||||
}
|
||||
}
|
||||
|
||||
.reviews-navigation{
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 20px;
|
||||
margin-top: 10px;
|
||||
.reviews-navigation-counter{
|
||||
width: auto;
|
||||
top: auto;
|
||||
}
|
||||
button{
|
||||
position: relative;
|
||||
border: none !important;
|
||||
background-color: transparent !important;
|
||||
color: var(--clr-primary);
|
||||
cursor: pointer;
|
||||
left: auto;
|
||||
right: auto;
|
||||
padding: 0;
|
||||
&::after{
|
||||
content: none !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.mobile{
|
||||
display: none;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 1240px){
|
||||
swiper{
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@media screen and (max-width: 1024px) {
|
||||
.mobile{
|
||||
display: block;
|
||||
width: 100%;
|
||||
}
|
||||
.desktop{
|
||||
display: none;
|
||||
}
|
||||
.reviews-header{
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
.reviews-navigation{
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.reviews{
|
||||
|
||||
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 15px;
|
||||
.reviews-img{
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
img{
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
.reviews-text{
|
||||
cursor: default;
|
||||
h5{
|
||||
margin-bottom: 10px;
|
||||
margin-top: 0px;
|
||||
}
|
||||
.reviews-author{
|
||||
margin-top: 15px;
|
||||
}
|
||||
.reviews-post{
|
||||
font-size: 16px;
|
||||
line-height: 20px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { ReviewsComponent } from './reviews.component';
|
||||
|
||||
describe('ReviewsComponent', () => {
|
||||
let component: ReviewsComponent;
|
||||
let fixture: ComponentFixture<ReviewsComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [ReviewsComponent]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(ReviewsComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
|
|
@ -0,0 +1,119 @@
|
|||
import { NgFor, NgIf } from '@angular/common';
|
||||
import { Component, CUSTOM_ELEMENTS_SCHEMA, ElementRef, ViewChild } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'reviews',
|
||||
standalone: true,
|
||||
imports: [NgFor, NgIf],
|
||||
templateUrl: './reviews.component.html',
|
||||
styleUrl: './reviews.component.scss',
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
||||
})
|
||||
|
||||
export class ReviewsComponent {
|
||||
img?:string|null;
|
||||
num = 0;
|
||||
init?:boolean;
|
||||
|
||||
@ViewChild('mobileText') mobileText;
|
||||
@ViewChild('mobileSwiper') mobileSwiper;
|
||||
@ViewChild('desktopSwiper') desktopSwiper;
|
||||
|
||||
|
||||
public config = {
|
||||
slidesPerView: 2,
|
||||
initialSlide: 1,
|
||||
spaceBetween: 30,
|
||||
centeredSlides: false,
|
||||
loop: true,
|
||||
pagination:{
|
||||
enabled: true,
|
||||
type: 'fraction',
|
||||
el:'.reviews-navigation-counter'
|
||||
},
|
||||
navigation: {
|
||||
nextEl: '.reviews-button-next',
|
||||
prevEl: '.reviews-button-prev',
|
||||
},
|
||||
keyboard: true,
|
||||
mousewheel: true
|
||||
};
|
||||
|
||||
public mobileConfig = {
|
||||
slidesPerView: 1,
|
||||
initialSlide: 0,
|
||||
spaceBetween: 30,
|
||||
centeredSlides: false,
|
||||
loop: true,
|
||||
pagination:{
|
||||
enabled: true,
|
||||
type: 'fraction',
|
||||
el:'.reviews-navigation-counter'
|
||||
},
|
||||
navigation: {
|
||||
nextEl: '.reviews-button-next',
|
||||
prevEl: '.reviews-button-prev',
|
||||
},
|
||||
keyboard: true,
|
||||
mousewheel: true,
|
||||
speed:500,
|
||||
autoplay: {
|
||||
delay: 2500,
|
||||
disableOnInteraction: true,
|
||||
},
|
||||
};
|
||||
|
||||
event(event){
|
||||
console.log('swiper',event)
|
||||
}
|
||||
|
||||
ngAfterViewInit(){
|
||||
console.log(this.desktopSwiper.nativeElement.swiper)
|
||||
console.log(this.config)
|
||||
// this.desktopSwiper.nativeElement.swiperParams=Object.assign(
|
||||
// this.desktopSwiper.nativeElement.swiperParams,
|
||||
// this.config
|
||||
// )
|
||||
}
|
||||
|
||||
onSwiperInit(){
|
||||
this.mobileText?.swiperRef?.slideTo(1);
|
||||
this.init = true
|
||||
}
|
||||
|
||||
onSlideChange(event:any) {
|
||||
setTimeout(
|
||||
()=>this.mobileText.nativeElement.swiper.slideTo(event.detail[0].realIndex),300
|
||||
);
|
||||
}
|
||||
|
||||
select(img:string){
|
||||
this.img = img;
|
||||
}
|
||||
|
||||
reviews = [
|
||||
{
|
||||
img:'assets/img/reviews/review-01.jpg',
|
||||
header:'Технический комитет по стандартизации ТК 023 «Нефтяная и газовая промышленность»',
|
||||
txt: 'Разработанный совместными силами ЧУ СЦ «ВНИИГАЗ-Сертификат», ООО «Газпром ВНИИГАЗ» и Вашего Общества и внедренный в практическую деятельность технического комитета по стандартизации ТК 023 «Нефтяная и газовая промышленность» Интернет-портал ТК 023 содействует достижению целей ТК 023 при разработке проектов национальных, межгосударственных стандартов, предварительных национальных стандартов и изменений к ним, а также выполнения других работ по стандартизации в соответствии с ГОСТ Р 1.- 2020.',
|
||||
name: 'Елфимов А.В.',
|
||||
post: 'Ответственный секретарь TK 023/MT 523'
|
||||
},
|
||||
{
|
||||
img:'assets/img/reviews/review-02.jpg',
|
||||
header:'ЧУ «Сертификационный Центр «ВНИИГАЗ-Сертификат»',
|
||||
txt: 'Ваш профессионализм, тщательное планирование и техническое мастерство отразились в качестве разработанной системы. Благодаря вашей работе, наша организация теперь обладает эффективным и современным инструментом, который значительно улучшает наши рабочие процессы и способствует повышению производительности.',
|
||||
name: 'Гоготишвили Д.М.',
|
||||
post: 'Генеральный директор ЧУ СЦ «ВНИИГАЗ – Сертификат»'
|
||||
},
|
||||
{
|
||||
img:'assets/img/reviews/review-03.jpg',
|
||||
header:'Испытательный центр ООО «Газпром ВНИИГАЗ»',
|
||||
txt: 'Мы высоко ценим ваш профессионализм, опыт и знания, которые были вложены в разработку и внедрение этого проекта. Ваше умение находить оптимальные решения и внимание к деталям позволили создать систему, отвечающую самым высоким стандартам качества. Особенно хотелось бы отметить Ваши оперативность в решении возникающих вопросов и открытость к обратной связи.',
|
||||
name: 'Солдатов В.А.',
|
||||
post: 'Руководитель Испытательного центра «ВНИИГАЗ»'
|
||||
},
|
||||
]
|
||||
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="ico">
|
||||
<g id="Icons / arrow_forward_24">
|
||||
<path id="Union" fill-rule="evenodd" clip-rule="evenodd" d="M18.5858 10.5821L12.0037 4L10.5895 5.41421L16.1753 11H4V13H16.1678L10.5895 18.5783L12.0037 19.9925L18.5858 13.4105L20 11.9963L18.5858 10.5821Z" fill="currentColor" fill-opacity="0.63"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 397 B |
|
|
@ -0,0 +1,5 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="ico">
|
||||
<rect x="2" y="5" width="20" height="2" fill="currentColor"/>
|
||||
<rect x="2" y="11" width="20" height="2" fill="currentColor"/>
|
||||
<rect x="2" y="17" width="20" height="2" fill="currentColor"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 300 B |
|
|
@ -0,0 +1,3 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="ico">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.8722 16.7848L14.8256 14.8314C15.4253 14.2317 16.3333 14.0915 17.1363 14.3644C17.7404 14.5697 18.366 14.7282 19.009 14.8356C20.0985 15.0175 21 15.8954 21 17V19C21 20.1046 20.0979 21.0115 19 20.8901C16.9574 20.6644 15.0177 20.0967 13.2396 19.2458C12.6111 18.9451 12.0027 18.6089 11.4171 18.2399C9.13489 16.8018 7.19836 14.8652 5.76025 12.5831C5.39124 11.9974 5.05505 11.3891 4.75427 10.7606C3.90332 8.98236 3.33569 7.04272 3.10986 5C2.98843 3.90213 3.89543 3 5 3H7C8.10457 3 8.98248 3.90151 9.16441 4.991C9.27178 5.63402 9.43029 6.25974 9.63562 6.86382C9.90857 7.66686 9.76843 8.57489 9.16869 9.17463L7.21533 11.128C8.59204 13.4577 10.5425 15.4081 12.8722 16.7848ZM14.7511 17.7343L16.2959 16.1895C17.1617 16.4983 18.0664 16.7242 19 16.858V18.8764C17.5096 18.6908 16.0839 18.3004 14.7511 17.7343ZM6.26575 9.24908L7.81055 7.70428C7.50171 6.83844 7.27576 5.93365 7.14209 5H5.12354C5.3092 6.49048 5.69971 7.9162 6.26575 9.24908Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
|
|
@ -0,0 +1,5 @@
|
|||
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="ico">
|
||||
<g id="Icons / chevron_left_big_24">
|
||||
<path id="Union" fill-rule="evenodd" clip-rule="evenodd" d="M15.4985 2.00005L7.26777 10.2308L5.5 11.9985L7.26777 13.7663L15.4985 21.997L17.2663 20.2293L9.03553 11.9985L17.2663 3.76781L15.4985 2.00005Z" fill="currentColor"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 378 B |
|
|
@ -0,0 +1,5 @@
|
|||
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="ico">
|
||||
<g id="Icons / chevron_right_big_24">
|
||||
<path id="Union" fill-rule="evenodd" clip-rule="evenodd" d="M9.50151 2.00005L17.7322 10.2308L19.5 11.9985L17.7322 13.7663L9.50151 21.997L7.73374 20.2293L15.9645 11.9985L7.73374 3.76781L9.50151 2.00005Z" fill="currentColor"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 380 B |
|
|
@ -0,0 +1,5 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="ico">
|
||||
<g id="Icons / close_24">
|
||||
<path id="Union" fill-rule="evenodd" clip-rule="evenodd" d="M6.4058 4.99263L4.99159 6.40685L10.5847 12L4.99159 17.5932L6.4058 19.0074L11.999 13.4142L17.5922 19.0075L19.0064 17.5933L13.4132 12L19.0064 6.40672L17.5922 4.99251L11.999 10.5858L6.4058 4.99263Z" fill="currentColor"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 421 B |
|
|
@ -0,0 +1,5 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="ico">
|
||||
<g id="Icons / mail_24">
|
||||
<path id="Union" fill-rule="evenodd" clip-rule="evenodd" d="M4 8.3198V18H20V8.31999L13.7167 14.2543C12.7532 15.1642 11.247 15.1642 10.2835 14.2543L4 8.3198ZM19.5437 6H4.45654L11.6568 12.8002C11.8495 12.9822 12.1507 12.9822 12.3434 12.8002L19.5437 6ZM2 5.5C2 4.67157 2.67157 4 3.5 4H20.5C21.3284 4 22 4.67157 22 5.5V18.5C22 19.3284 21.3284 20 20.5 20H3.5C2.67157 20 2 19.3284 2 18.5V5.5Z" fill="currentColor"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 552 B |
|
|
@ -0,0 +1,5 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="ico">
|
||||
<g id="Icons / pin_drop_24">
|
||||
<path id="Union" fill-rule="evenodd" clip-rule="evenodd" d="M13.9561 15.7286C15.6283 13.6981 17 11.2821 17 9C17 6.23858 14.7614 4 12 4C9.23858 4 7 6.23858 7 9C7 11.2821 8.37166 13.6981 10.0439 15.7286C10.7357 16.5687 11.4313 17.2854 12 17.8295C12.5687 17.2854 13.2643 16.5687 13.9561 15.7286ZM19 9C19 13.926 14.2817 18.515 12.5926 20H19V22H5V20H11.4074C9.71829 18.515 5 13.926 5 9C5 5.13401 8.13401 2 12 2C15.866 2 19 5.13401 19 9ZM12 11C13.1046 11 14 10.1046 14 9C14 7.89543 13.1046 7 12 7C10.8954 7 10 7.89543 10 9C10 10.1046 10.8954 11 12 11Z" fill="currentColor"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 715 B |
|
|
@ -0,0 +1,5 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="ico">
|
||||
<g id="Icons / webpage_24">
|
||||
<path id="Union" fill-rule="evenodd" clip-rule="evenodd" d="M4 8V18H20V8H4ZM2 6C2 4.89543 2.89543 4 4 4H20C21.1046 4 22 4.89543 22 6V18C22 19.1046 21.1046 20 20 20H4C2.89543 20 2 19.1046 2 18V6ZM6 10H18V12H6V10ZM14 14H6V16H14V14Z" fill="currentColor"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 398 B |
|
After Width: | Height: | Size: 245 KiB |
|
After Width: | Height: | Size: 107 KiB |
|
|
@ -0,0 +1,23 @@
|
|||
<svg width="120" height="170" viewBox="0 0 120 170" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="Frame 286">
|
||||
<g clip-path="url(#clip0_90_46553)">
|
||||
<rect id="Rectangle 764" width="120" height="170" fill="white"/>
|
||||
<rect id="Rectangle 765" x="42" y="54" width="36" height="4" fill="#D8D8D8"/>
|
||||
<rect id="Rectangle 771" x="68" y="22" width="36" height="4" fill="#D8D8D8"/>
|
||||
<rect id="Rectangle 772" x="68" y="32" width="36" height="4" fill="#D8D8D8"/>
|
||||
<rect id="Rectangle 773" x="68" y="135" width="36" height="4" fill="#D8D8D8"/>
|
||||
<rect id="Rectangle 766" x="16" y="67" width="88" height="4" fill="#D8D8D8"/>
|
||||
<rect id="Rectangle 767" x="16" y="77" width="88" height="4" fill="#D8D8D8"/>
|
||||
<rect id="Rectangle 768" x="16" y="87" width="88" height="4" fill="#D8D8D8"/>
|
||||
<rect id="Rectangle 769" x="16" y="97" width="88" height="4" fill="#D8D8D8"/>
|
||||
<rect id="Rectangle 770" x="16" y="107" width="60" height="4" fill="#D8D8D8"/>
|
||||
<circle id="Ellipse 193" cx="72" cy="139" r="10" stroke="#D8D8D8" stroke-width="4"/>
|
||||
</g>
|
||||
<rect x="0.5" y="0.5" width="119" height="169" stroke="black" stroke-opacity="0.13"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_90_46553">
|
||||
<rect width="120" height="170" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 529 KiB |
|
After Width: | Height: | Size: 137 KiB |
|
After Width: | Height: | Size: 98 KiB |
|
After Width: | Height: | Size: 1.1 MiB |
|
After Width: | Height: | Size: 209 KiB |
|
After Width: | Height: | Size: 98 KiB |
|
After Width: | Height: | Size: 740 KiB |
|
After Width: | Height: | Size: 547 KiB |
|
After Width: | Height: | Size: 442 KiB |
|
After Width: | Height: | Size: 691 KiB |
|
After Width: | Height: | Size: 336 KiB |
|
After Width: | Height: | Size: 442 KiB |
|
After Width: | Height: | Size: 122 KiB |
|
After Width: | Height: | Size: 116 KiB |
|
After Width: | Height: | Size: 113 KiB |
|
After Width: | Height: | Size: 115 KiB |
|
After Width: | Height: | Size: 345 KiB |
|
After Width: | Height: | Size: 111 KiB |
|
After Width: | Height: | Size: 237 KiB |
|
After Width: | Height: | Size: 253 KiB |
|
After Width: | Height: | Size: 300 KiB |
|
After Width: | Height: | Size: 276 KiB |
|
After Width: | Height: | Size: 740 KiB |
|
After Width: | Height: | Size: 441 KiB |
|
After Width: | Height: | Size: 591 KiB |
|
After Width: | Height: | Size: 544 KiB |
|
After Width: | Height: | Size: 371 KiB |
|
After Width: | Height: | Size: 288 KiB |
|
After Width: | Height: | Size: 316 KiB |
|
After Width: | Height: | Size: 249 KiB |
|
After Width: | Height: | Size: 242 KiB |
|
After Width: | Height: | Size: 336 KiB |
|
After Width: | Height: | Size: 115 KiB |
|
After Width: | Height: | Size: 485 KiB |
|
After Width: | Height: | Size: 98 KiB |
|
After Width: | Height: | Size: 693 KiB |
|
After Width: | Height: | Size: 84 KiB |
|
After Width: | Height: | Size: 265 KiB |
|
After Width: | Height: | Size: 77 KiB |
|
After Width: | Height: | Size: 130 KiB |
|
After Width: | Height: | Size: 54 KiB |
|
After Width: | Height: | Size: 168 KiB |
|
After Width: | Height: | Size: 48 KiB |
|
After Width: | Height: | Size: 176 KiB |
|
After Width: | Height: | Size: 95 KiB |
|
After Width: | Height: | Size: 102 KiB |
|
After Width: | Height: | Size: 98 KiB |