Initial commit
This commit is contained in:
103
index.html
Normal file
103
index.html
Normal file
@@ -0,0 +1,103 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ru">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>ГеоВектор - Проектирование и Строительство</title>
|
||||
|
||||
<!-- Favicon -->
|
||||
<link rel="icon" type="image/webp" href="/media/geo-logo.webp" />
|
||||
<link rel="shortcut icon" type="image/webp" href="/media/geo-logo.webp" />
|
||||
<link rel="apple-touch-icon" href="/media/geo-logo.webp" />
|
||||
|
||||
<!-- Meta tags -->
|
||||
<meta name="description" content="ООО ГеоВектор - профессиональные инженерные изыскания, проектирование и строительство в Уфе. Современное оборудование, опытные специалисты." />
|
||||
<meta name="keywords" content="инженерные изыскания, проектирование, строительство, геология, геодезия, ГеоВектор, Уфа" />
|
||||
|
||||
<!-- Open Graph для соцсетей -->
|
||||
<meta property="og:title" content="ГеоВектор - Инженерные изыскания, проектирование и строительство" />
|
||||
<meta property="og:description" content="Профессиональные инженерные изыскания, проектирование и строительство в Уфе. Современное оборудование, опытные специалисты." />
|
||||
<meta property="og:image" content="https://geowektor.ru/media/geo-logo.webp" />
|
||||
<meta property="og:url" content="https://geowektor.ru" />
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:locale" content="ru_RU" />
|
||||
|
||||
<!-- Twitter Card -->
|
||||
<meta name="twitter:card" content="summary_large_image" />
|
||||
<meta name="twitter:title" content="ГеоВектор - Инженерные изыскания и строительство" />
|
||||
<meta name="twitter:description" content="Профессиональные решения для строительства в Уфе" />
|
||||
<meta name="twitter:image" content="https://geowektor.ru/media/geo-logo.webp" />
|
||||
|
||||
<!-- Schema.org разметка -->
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Organization",
|
||||
"name": "ООО ГеоВектор",
|
||||
"alternateName": "GeoVector",
|
||||
"url": "https://geowektor.ru",
|
||||
"logo": "https://geowektor.ru/media/geo-logo.webp",
|
||||
"contactPoint": {
|
||||
"@type": "ContactPoint",
|
||||
"telephone": "+7-347-292-73-70",
|
||||
"contactType": "customer service",
|
||||
"areaServed": "RU",
|
||||
"availableLanguage": ["Russian"]
|
||||
},
|
||||
"address": {
|
||||
"@type": "PostalAddress",
|
||||
"streetAddress": "ул. Комсомольская 19/1",
|
||||
"addressLocality": "Уфа",
|
||||
"addressRegion": "Республика Башкортостан",
|
||||
"postalCode": "450001",
|
||||
"addressCountry": "RU"
|
||||
},
|
||||
"sameAs": [
|
||||
"https://t.me/ooo_geo_wektor",
|
||||
"https://vk.com/geowektor_ru"
|
||||
],
|
||||
"description": "Профессиональные инженерные изыскания, проектирование и строительство. Грунтовая и радиационная лаборатории."
|
||||
}
|
||||
</script>
|
||||
|
||||
<script src="js/tailwind.js"></script>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
||||
<script>
|
||||
tailwind.config = {
|
||||
theme: {
|
||||
extend: {
|
||||
fontFamily: {
|
||||
sans: ['Inter', 'sans-serif'],
|
||||
},
|
||||
colors: {
|
||||
brand: {
|
||||
orange: '#FF9900',
|
||||
dark: '#111111',
|
||||
gray: '#222222',
|
||||
light: '#F5F5F5'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<script type="importmap">
|
||||
{
|
||||
"imports": {
|
||||
"lucide-react": "https://aistudiocdn.com/lucide-react@^0.555.0",
|
||||
"react/": "https://aistudiocdn.com/react@^19.2.0/",
|
||||
"react": "https://aistudiocdn.com/react@^19.2.0",
|
||||
"react-dom/": "https://aistudiocdn.com/react-dom@^19.2.0/",
|
||||
"react-router-dom": "https://aistudiocdn.com/react-router-dom@^6.22.3",
|
||||
"react-router": "https://aistudiocdn.com/react-router@^6.22.3",
|
||||
"@remix-run/router": "https://aistudiocdn.com/@remix-run/router@^1.15.3"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<link rel="stylesheet" href="/index.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="root"></div>
|
||||
<script type="module" src="/index.tsx"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user