Main functions

This commit is contained in:
2025-10-26 14:44:10 +09:00
parent 6ff35e26f4
commit 291fc63a4c
901 changed files with 79783 additions and 201383 deletions

View File

@@ -1,22 +1,4 @@
<!DOCTYPE html>
<html lang="<%= locale %>" class="<%= theme === 'dark' ? 'dark' : '' %>">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><%- __('about.meta.title') %> - SmartSolTech</title>
<!-- SEO Meta Tags -->
<meta name="description" content="<%- __('about.meta.description') %>">
<!-- Styles -->
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet">
<link href="/css/main.css" rel="stylesheet">
<link href="/css/fixes.css" rel="stylesheet">
<link href="/css/dark-theme.css" rel="stylesheet">
</head>
<body class="font-sans dark:bg-gray-900 dark:text-gray-100">
<%- include('partials/navigation') %>
<!-- About page content starts here -->
<!-- Hero Section - Компактный -->
<section class="relative bg-gradient-to-br from-blue-900 via-purple-900 to-indigo-900 dark:from-gray-900 dark:via-blue-900 dark:to-purple-900 hero-section-compact">
@@ -39,10 +21,10 @@
<h2 class="text-4xl font-bold text-gray-900 dark:text-white mb-6">
<%- __('about.company.title') %>
</h2>
<p class="text-lg text-gray-600 dark:text-gray-300 mb-6">
<p class="text-lg text-white text-center mb-6">
<%- __('about.company.description1') %>
</p>
<p class="text-lg text-gray-600 dark:text-gray-300 mb-8">
<p class="text-lg text-white text-center mb-8">
<%- __('about.company.description2') %>
</p>
@@ -80,7 +62,7 @@
<h2 class="text-4xl font-bold text-gray-900 dark:text-white mb-4">
<%- __('about.mission.title') %>
</h2>
<p class="text-xl text-gray-600 dark:text-gray-300 max-w-3xl mx-auto">
<p class="text-xl text-white text-center max-w-3xl mx-auto">
<%- __('about.mission.description') %>
</p>
</div>
@@ -146,15 +128,12 @@
</div>
</section>
<%- include('partials/footer') %>
<!-- About page content ends here -->
<!-- Scripts -->
<script>
// Theme initialization
document.addEventListener('DOMContentLoaded', function() {
const theme = localStorage.getItem('theme') || 'light';
document.documentElement.className = theme === 'dark' ? 'dark' : '';
});
</script>
</body>
</html>
<script>
// Theme initialization
document.addEventListener('DOMContentLoaded', function() {
const theme = localStorage.getItem('theme') || 'light';
document.documentElement.className = theme === 'dark' ? 'dark' : '';
});
</script>