fix: update license images

This commit is contained in:
2025-06-17 14:10:51 +03:00
parent 553e6da6db
commit 39f56b170f
5 changed files with 32 additions and 26 deletions

View File

@@ -3,6 +3,8 @@ import { Mark } from '@shared/ui';
import { LicenseForm, LicenseSlider } from '@/widgets';
import emptyPaper from '@public/svg/empty-paper.svg';
import mcsLicense from '@public/images/license-mcs.jpg';
import eacLicense from '@public/images/license-dtr-eac.png';
export default function License() {
return (
@@ -20,21 +22,21 @@ const slides = [
{
id: '0',
name: '',
image: emptyPaper,
image: eacLicense,
},
{
id: '1',
name: '',
image: emptyPaper,
},
{
id: '2',
name: '',
image: emptyPaper,
},
{
id: '3',
name: '',
image: emptyPaper,
image: mcsLicense,
},
// {
// id: '2',
// name: '',
// image: emptyPaper,
// },
// {
// id: '3',
// name: '',
// image: emptyPaper,
// },
];

View File

@@ -1,15 +1,13 @@
import s from './main.module.scss';
import Image from 'next/image';
import { Button } from '@shared/ui';
import { ConsultationOrder } from '@/entities/home/consultation-order';
import { CallbackOrder } from '@/entities/home/callback-order';
import bgStart from '@public/images/bg-start-desktop.jpg';
import logo from '@public/images/dtr-logo.png';
import waIcon from '@public/svg/whatsapp.svg';
import emailIcon from '@public/svg/email-icon.svg';
import callBtn from '@public/svg/phone-calling.svg';
import { CallbackOrder } from '@/entities/home/callback-order';
export default function Main() {
return (