File size: 18,118 Bytes
a63e827 001dd03 a63e827 c6fadbd a63e827 c6fadbd a63e827 e9aa897 a63e827 e9aa897 a63e827 e9aa897 a63e827 e9aa897 a63e827 e9aa897 a63e827 e9aa897 a63e827 e9aa897 a63e827 e9aa897 a63e827 c6fadbd a63e827 c6fadbd a63e827 e9aa897 c6fadbd e9aa897 a63e827 c6fadbd a63e827 c6fadbd a63e827 c6fadbd a63e827 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Minimalist Design Studio</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
'sans': ['Poppins', 'sans-serif']
}
}
}
}
</script>
<style>
/* Black and white styles */
.bw-bg {
background-color: #000;
}
.hero-bg {
background-image: url('hero.png');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.section-bg {
background-color: #000;
}
.text-black {
color: #000;
}
.text-white {
color: #fff;
}
/* Smooth scrolling */
html {
scroll-behavior: smooth;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #000;
}
::-webkit-scrollbar-thumb {
background: #333;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}
</style>
</head>
<body class="font-sans bg-black text-white">
<!-- Action Bar (Fixed at top) -->
<nav class="fixed top-0 left-0 right-0 z-50 bg-white border-b border-black backdrop-blur-sm">
<div class="container mx-auto px-4 py-3 flex justify-between items-center">
<div class="text-xl font-bold text-black">Studio</div>
<!-- Mobile menu button -->
<button id="mobile-menu-button" class="md:hidden text-black">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</button>
<!-- Desktop Navigation -->
<div class="hidden md:flex space-x-6 items-center">
<a href="#hero" class="hover:text-gray-500 transition-colors duration-300 nav-link text-black">Home</a>
<a href="#team" class="hover:text-gray-500 transition-colors duration-300 nav-link text-black">Meet Our Team</a>
<a href="#contact" class="hover:text-gray-500 transition-colors duration-300 nav-link text-black">Contact</a>
<!-- Language Switcher -->
<div class="flex space-x-2">
<button id="lang-en" class="px-3 py-1 bg-black text-white border border-black rounded-full text-sm font-medium hover:bg-gray-800 transition-colors duration-300 lang-btn">EN</button>
<button id="lang-lt" class="px-3 py-1 bg-white text-black border border-black rounded-full text-sm font-medium hover:bg-gray-100 transition-colors duration-300 lang-btn">LT</button>
</div>
</div>
</div>
<!-- Mobile Navigation (Hidden by default) -->
<div id="mobile-menu" class="hidden md:hidden bg-white border-t border-black">
<div class="container mx-auto px-4 py-3 flex flex-col space-y-3">
<a href="#hero" class="py-2 hover:text-gray-500 transition-colors duration-300 nav-link text-black">Home</a>
<a href="#team" class="py-2 hover:text-gray-500 transition-colors duration-300 nav-link text-black">Meet Our Team</a>
<a href="#contact" class="py-2 hover:text-gray-500 transition-colors duration-300 nav-link text-black">Contact</a>
<!-- Language Switcher -->
<div class="flex space-x-2 py-2">
<button id="lang-en-mobile" class="px-3 py-1 bg-black text-white border border-black rounded-full text-sm font-medium hover:bg-gray-800 transition-colors duration-300 lang-btn">EN</button>
<button id="lang-lt-mobile" class="px-3 py-1 bg-white text-black border border-black rounded-full text-sm font-medium hover:bg-gray-100 transition-colors duration-300 lang-btn">LT</button>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="hero" class="hero-bg min-h-screen flex flex-col justify-center items-center relative pt-16">
<div class="text-center px-4 max-w-3xl">
<h1 id="hero-title" class="text-4xl md:text-6xl font-bold mb-6 text-black">Welcome to Our Design Studio</h1>
<p id="hero-subtitle" class="text-xl md:text-2xl text-black opacity-90">Creating minimalist experiences with purpose</p>
</div>
<div class="absolute bottom-8 animate-bounce">
<svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 14l-7 7m0 0l-7-7m7 7V3"></path>
</svg>
</div>
</section>
<!-- Meet Our Team Section -->
<section id="team" class="py-20 section-bg">
<div class="container mx-auto px-4">
<h2 id="team-title" class="text-3xl md:text-4xl font-bold text-center mb-16 text-white">Meet Our Team</h2>
<div class="flex flex-col md:flex-row justify-center items-center gap-12">
<!-- Team Member 1 -->
<div class="max-w-sm text-center">
<div class="w-48 h-48 mx-auto mb-6 rounded-full overflow-hidden border-4 border-white">
<img src="Asta.png" alt="Asta Astrauskienė" class="w-full h-full object-cover">
</div>
<h3 id="member1-name" class="text-2xl font-semibold mb-2 text-white">Asta Astrauskienė</h3>
<p id="member1-bio" class="text-white opacity-80">Creative Director with over 10 years of experience in minimalist design and brand strategy.</p>
</div>
<!-- Team Member 2 -->
<div class="max-w-sm text-center">
<div class="w-48 h-48 mx-auto mb-6 rounded-full overflow-hidden border-4 border-white">
<img src="Simona.png" alt="Simona Jašmonaitė" class="w-full h-full object-cover">
</div>
<h3 id="member2-name" class="text-2xl font-semibold mb-2 text-white">Simona Jašmonaitė</h3>
<p id="member2-bio" class="text-white opacity-80">Lead Designer specializing in user experience and interface design for digital products.</p>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 section-bg">
<div class="container mx-auto px-4">
<h2 id="contact-title" class="text-3xl md:text-4xl font-bold text-center mb-16 text-white">Contact Us</h2>
<div class="max-w-2xl mx-auto">
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 text-center">
<div class="p-6 bg-gray-900 border border-white rounded-lg">
<div class="text-2xl mb-4 text-white">✉️</div>
<h3 id="email-label" class="text-xl font-semibold mb-2 text-white">Email</h3>
<p id="contact-email" class="text-white">hello@minimaliststudio.com</p>
</div>
<div class="p-6 bg-gray-900 border border-white rounded-lg">
<div class="text-2xl mb-4 text-white">📍</div>
<h3 id="address-label" class="text-xl font-semibold mb-2 text-white">Address</h3>
<p id="contact-address" class="text-white">123 Design Street, Creative City</p>
</div>
<div class="p-6 bg-gray-900 border border-white rounded-lg">
<div class="text-2xl mb-4 text-white">📞</div>
<h3 id="phone-label" class="text-xl font-semibold mb-2 text-white">Phone</h3>
<p id="contact-phone" class="text-white">+370 000 00000</p>
</div>
</div>
<div class="mt-12 text-center">
<a href="mailto:hello@minimaliststudio.com" class="inline-block px-8 py-3 bg-white text-black font-semibold rounded-full hover:bg-gray-200 transition-colors duration-300">
Send us a message
</a>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="py-8 bg-black border-t border-white">
<div class="container mx-auto px-4 text-center text-white">
<p id="footer-text">© 2023 Minimalist Design Studio. All rights reserved.</p>
</div>
</footer>
<script>
// Language translations
const translations = {
en: {
home: "Home",
team: "Meet Our Team",
contact: "Contact",
heroTitle: "Welcome to Our Design Studio",
heroSubtitle: "Creating minimalist experiences with purpose",
teamTitle: "Meet Our Team",
member1Name: "Asta Astrauskienė",
member1Bio: "Creative Director with over 10 years of experience in minimalist design and brand strategy.",
member2Name: "Simona Jašmonaitė",
member2Bio: "Lead Designer specializing in user experience and interface design for digital products.",
contactTitle: "Contact Us",
emailLabel: "Email",
addressLabel: "Address",
phoneLabel: "Phone",
contactEmail: "hello@minimaliststudio.com",
contactAddress: "123 Design Street, Creative City",
contactPhone: "+370 000 00000",
contactButton: "Send us a message",
footerText: "© 2023 Minimalist Design Studio. All rights reserved."
},
lt: {
home: "Pagrindinis",
team: "Susipažinkite su komanda",
contact: "Kontaktai",
heroTitle: "Sveiki atvykę į mūsų dizaino studiją",
heroSubtitle: "Kuriame minimalistinius patyrimus su paskirtimi",
teamTitle: "Susipažinkite su mūsų komanda",
member1Name: "Asta Astrauskienė",
member1Bio: "Kūrybinis direktorius, turintis daugiau nei 10 metų patirties minimalistiniame dizaine ir prekių ženklo strategijoje.",
member2Name: "Simona Jašmonaitė",
member2Bio: "Vyriausiasis dizaineris, specializuojantis naudotojo patyrimo ir sąsajos dizaine skaitmeniniams produktams.",
contactTitle: "Susisiekite su mumis",
emailLabel: "El. Paštas",
addressLabel: "Adresas",
phoneLabel: "Tl. Numeris",
contactEmail: "labas@minimaliststudija.lt",
contactAddress: "123 Dizaino gatvė, Kūrybiškas miestas",
contactPhone: "+370 000 00000",
contactButton: "Parašykite mums",
footerText: "© 2023 Minimalistinės dizaino studija. Visos teisės saugomos."
}
};
// DOM elements
const langButtons = document.querySelectorAll('.lang-btn');
const navLinks = document.querySelectorAll('.nav-link');
const heroTitle = document.getElementById('hero-title');
const heroSubtitle = document.getElementById('hero-subtitle');
const teamTitle = document.getElementById('team-title');
const member1Name = document.getElementById('member1-name');
const member1Bio = document.getElementById('member1-bio');
const member2Name = document.getElementById('member2-name');
const member2Bio = document.getElementById('member2-bio');
const contactTitle = document.getElementById('contact-title');
const emailLabel = document.getElementById('email-label');
const addressLabel = document.getElementById('address-label');
const phoneLabel = document.getElementById('phone-label');
const contactEmail = document.getElementById('contact-email');
const contactAddress = document.getElementById('contact-address');
const contactPhone = document.getElementById('contact-phone');
const contactButton = document.querySelector('#contact a');
const footerText = document.getElementById('footer-text');
// Mobile menu elements
const mobileMenuButton = document.getElementById('mobile-menu-button');
const mobileMenu = document.getElementById('mobile-menu');
// Set current language
let currentLang = 'en';
// Update content based on language
function updateContent(lang) {
currentLang = lang;
// Update navigation (both desktop and mobile)
const navLinksArray = Array.from(navLinks);
navLinksArray[0].textContent = translations[lang].home;
navLinksArray[1].textContent = translations[lang].team;
navLinksArray[2].textContent = translations[lang].contact;
// Update mobile navigation links as well (indices 3, 4, 5)
if (navLinksArray.length > 3) {
navLinksArray[3].textContent = translations[lang].home;
navLinksArray[4].textContent = translations[lang].team;
navLinksArray[5].textContent = translations[lang].contact;
}
// Update hero section
heroTitle.textContent = translations[lang].heroTitle;
heroSubtitle.textContent = translations[lang].heroSubtitle;
// Update team section
teamTitle.textContent = translations[lang].teamTitle;
member1Name.textContent = translations[lang].member1Name;
member1Bio.textContent = translations[lang].member1Bio;
member2Name.textContent = translations[lang].member2Name;
member2Bio.textContent = translations[lang].member2Bio;
// Update contact section
contactTitle.textContent = translations[lang].contactTitle;
emailLabel.textContent = translations[lang].emailLabel;
addressLabel.textContent = translations[lang].addressLabel;
phoneLabel.textContent = translations[lang].phoneLabel;
contactEmail.textContent = translations[lang].contactEmail;
contactAddress.textContent = translations[lang].contactAddress;
contactPhone.textContent = translations[lang].contactPhone;
contactButton.textContent = translations[lang].contactButton;
// Update footer
footerText.textContent = translations[lang].footerText;
// Update language button styles for both desktop and mobile
document.querySelectorAll('#lang-en, #lang-lt, #lang-en-mobile, #lang-lt-mobile').forEach(btn => {
if (btn.id === `lang-${lang}` || btn.id === `lang-${lang}-mobile`) {
// Active button - black background with white text
btn.classList.add('bg-black', 'text-white');
btn.classList.remove('bg-white', 'text-black');
} else {
// Inactive button - white background with black text
btn.classList.remove('bg-black', 'text-white');
btn.classList.add('bg-white', 'text-black');
}
});
}
// Event listeners for language buttons (both desktop and mobile)
langButtons.forEach(button => {
button.addEventListener('click', () => {
const lang = button.id.split('-')[1];
updateContent(lang);
});
});
// Mobile menu toggle
mobileMenuButton.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
// Smooth scrolling for navigation links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
const targetId = this.getAttribute('href');
const targetElement = document.querySelector(targetId);
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
});
});
// Initialize with English content
updateContent('en');
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=ryzikas/oh-yes" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |