This commit is contained in:
2026-03-30 17:23:34 +09:00
parent 789719596b
commit 7fe13b59ae
6 changed files with 8 additions and 7 deletions

View File

@@ -2,7 +2,7 @@
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="/src/index.css" rel="stylesheet">
<title>ООО «КОММИТ»</title>

BIN
public/assets/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

BIN
public/assets/favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

View File

@@ -76,7 +76,7 @@ const AboutSection = () => {
</svg>
,
title: 'Собственные программные продукты',
description: 'запатентованы и внесены в реестр отечественного программного обеспечения'
description: 'Запатентованы и внесены в реестр отечественного программного обеспечения'
},
{
icon: <svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
@@ -87,7 +87,7 @@ const AboutSection = () => {
</svg>
,
title: 'Проекты цифровой трансформации',
description: 'реализация стратегических программ для госпредприятий'
description: 'Реализация стратегических программ для госпредприятий'
},
]
@@ -95,8 +95,8 @@ const AboutSection = () => {
<section id='about' className='h-auto w-full flex justify-center'>
<div className='max-w-7xl w-full h-auto xl:py-4'>
<CompanyInfoMockup>
<div className='w-full sm:p-8 flex flex-col space-y-8 justify-center'>
<span className='text-4xl text-center my-4'>О компании</span>
<div className='w-full sm:px-8 sm:pb-8 flex flex-col space-y-8 justify-center'>
<span className='text-4xl text-center my-4 leading-normal'>О компании</span>
<div className='grid grid-rows-2 sm:grid-rows-1 sm:grid-cols-2 gap-8 p-2 xl:p-0'>
<div className='p-8 flex flex-col space-y-4 bg-base-100 rounded-2xl'>

View File

@@ -31,7 +31,6 @@ const ProductsSection = () => {
title: 'ПО «Инженерно-картографическая система» ',
img: '/assets/iks.png',
descriptions: [
'Графическое отображение сетей тепло- и водоснабжения, котельных',
'Графическое отображение сетей тепло- и водоснабжения, котельных',
'Расчёт параметров объектов, паспортизация сетей на карте'
]

View File

@@ -55,6 +55,8 @@ export default function TypingEffect({
{lines.map((line, i) => (
<div key={i}>{line}</div>
))}
<br />
<br />
{visibleLines.map((line, index) => (
<div key={index}>{line}</div>
))}