|
1 | 1 | --- |
2 | | -title: Volovyk |
3 | | -layout: home |
4 | | -description: Norwegian software consulting company - Azure, .NET Core, Delphi, Dart & Flutter development services. |
5 | | -intro_image: "images/illustrations/pointing.svg" |
6 | | -intro_image_absolute: true |
7 | | -intro_image_hide_on_mobile: true |
8 | | -show_call_box: true |
| 2 | +layout: null |
| 3 | +permalink: / |
9 | 4 | --- |
10 | | - |
11 | | -# Professional Software Consulting |
12 | | - |
13 | | -Volovyk delivers scalable, maintainable solutions for modern software challenges. Based in Norway, we specialize in cloud-native development and cross-platform solutions. |
| 5 | +<!DOCTYPE html> |
| 6 | +<html lang="en"> |
| 7 | +<head> |
| 8 | + <meta charset="UTF-8"> |
| 9 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 10 | + <title>Under Construction - Volovyk</title> |
| 11 | + <meta name="robots" content="noindex, nofollow"> |
| 12 | + <style> |
| 13 | + * { |
| 14 | + margin: 0; |
| 15 | + padding: 0; |
| 16 | + box-sizing: border-box; |
| 17 | + } |
| 18 | + |
| 19 | + body { |
| 20 | + font-family: 'Arial', sans-serif; |
| 21 | + background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); |
| 22 | + height: 100vh; |
| 23 | + display: flex; |
| 24 | + justify-content: center; |
| 25 | + align-items: center; |
| 26 | + color: white; |
| 27 | + } |
| 28 | + |
| 29 | + .container { |
| 30 | + text-align: center; |
| 31 | + max-width: 600px; |
| 32 | + padding: 40px 20px; |
| 33 | + background: rgba(255, 255, 255, 0.1); |
| 34 | + border-radius: 20px; |
| 35 | + backdrop-filter: blur(10px); |
| 36 | + box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37); |
| 37 | + } |
| 38 | + |
| 39 | + .logo { |
| 40 | + font-size: 3rem; |
| 41 | + font-weight: bold; |
| 42 | + margin-bottom: 20px; |
| 43 | + color: #fff; |
| 44 | + } |
| 45 | + |
| 46 | + .title { |
| 47 | + font-size: 2.5rem; |
| 48 | + margin-bottom: 20px; |
| 49 | + color: #fff; |
| 50 | + } |
| 51 | + |
| 52 | + .subtitle { |
| 53 | + font-size: 1.2rem; |
| 54 | + margin-bottom: 30px; |
| 55 | + opacity: 0.9; |
| 56 | + line-height: 1.6; |
| 57 | + } |
| 58 | + |
| 59 | + .spinner { |
| 60 | + border: 4px solid rgba(255, 255, 255, 0.3); |
| 61 | + border-radius: 50%; |
| 62 | + border-top: 4px solid #fff; |
| 63 | + width: 60px; |
| 64 | + height: 60px; |
| 65 | + animation: spin 2s linear infinite; |
| 66 | + margin: 30px auto; |
| 67 | + } |
| 68 | + |
| 69 | + @keyframes spin { |
| 70 | + 0% { transform: rotate(0deg); } |
| 71 | + 100% { transform: rotate(360deg); } |
| 72 | + } |
| 73 | + |
| 74 | + .contact { |
| 75 | + margin-top: 30px; |
| 76 | + font-size: 1rem; |
| 77 | + opacity: 0.8; |
| 78 | + } |
| 79 | + |
| 80 | + .contact a { |
| 81 | + color: #fff; |
| 82 | + text-decoration: none; |
| 83 | + border-bottom: 1px solid rgba(255, 255, 255, 0.5); |
| 84 | + transition: all 0.3s ease; |
| 85 | + } |
| 86 | + |
| 87 | + .contact a:hover { |
| 88 | + border-bottom-color: #fff; |
| 89 | + opacity: 1; |
| 90 | + } |
| 91 | + |
| 92 | + @media (max-width: 768px) { |
| 93 | + .title { |
| 94 | + font-size: 2rem; |
| 95 | + } |
| 96 | + .subtitle { |
| 97 | + font-size: 1rem; |
| 98 | + } |
| 99 | + .container { |
| 100 | + margin: 20px; |
| 101 | + padding: 30px 15px; |
| 102 | + } |
| 103 | + } |
| 104 | + </style> |
| 105 | +</head> |
| 106 | +<body> |
| 107 | + <div class="container"> |
| 108 | + <div class="logo">🚧 VOLOVYK</div> |
| 109 | + <h1 class="title">Under Construction</h1> |
| 110 | + <p class="subtitle"> |
| 111 | + We're working hard to bring you something amazing!<br> |
| 112 | + Our new website will be ready soon. |
| 113 | + </p> |
| 114 | + <div class="spinner"></div> |
| 115 | + <div class="contact"> |
| 116 | + Need to reach us? Contact: <a href="mailto:info@volovyk.com">info@volovyk.com</a> |
| 117 | + </div> |
| 118 | + </div> |
| 119 | +</body> |
| 120 | +</html> |
0 commit comments