undefined / terms.html
ValeriaTrade's picture
CHANGE THE COLORS
d492874 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VALERIQUE | Terms & Conditions</title>
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#5E3023',
secondary: '#895737',
accent: '#B88B4A',
light: '#F5F1E3',
dark: '#2F1B0E'
},
fontFamily: {
sans: ['Roboto', 'sans-serif'],
display: ['Montserrat', 'sans-serif'],
serif: ['Playfair Display', 'serif']
}
}
}
}
</script>
<script src="https://unpkg.com/feather-icons"></script>
</head>
<body class="bg-light font-sans">
<!-- Minimal Header -->
<header class="bg-light shadow-sm border-b border-accent/10">
<div class="max-w-7xl mx-auto px-4 py-4 flex justify-between items-center">
<a href="index.html" class="text-3xl font-serif font-light text-primary">Valerique</a>
<div class="flex items-center space-x-4">
<a href="contact.html" class="text-gray-600 hover:text-primary">Contact</a>
<a href="#" class="text-gray-600 hover:text-primary"><i data-feather="shopping-bag"></i></a>
</div>
</div>
</header>
<!-- Terms Content -->
<main class="max-w-4xl mx-auto px-4 py-12">
<h1 class="text-4xl font-display font-bold text-center text-primary mb-12">Terms & Conditions</h1>
<div class="bg-light p-8 rounded-lg shadow-sm border border-accent/10">
<div class="prose max-w-none">
<h2 class="text-2xl font-display font-bold mb-4">1. General Information</h2>
<p class="mb-6 text-primary/90">These Terms and Conditions ("Terms") govern your use of the VALERIQUE website operated by VALERIA TRADE LTD ("us", "we", or "our"). Please read these Terms carefully before using our website.</p>
<h2 class="text-xl font-display font-bold mb-4">2. Intellectual Property</h2>
<p class="mb-6 text-primary/90">The website and its original content, features, and functionality are owned by VALERIA TRADE LTD and are protected by international copyright, trademark, patent, trade secret, and other intellectual property or proprietary rights laws.</p>
<h2 class="text-xl font-display font-bold mb-4">3. Products</h2>
<p class="mb-6 text-primary/90">We make every effort to display our products as accurately as possible. However, we cannot guarantee that your monitor's display of any color will be accurate. All products are subject to availability, and we reserve the right to discontinue any products at any time without notice.</p>
<h2 class="text-xl font-display font-bold mb-4">4. Pricing</h2>
<p class="mb-6 text-primary/90">Prices for our products are subject to change without notice. We reserve the right at any time to modify or discontinue products without notice. We shall not be liable to you or to any third-party for any modification, price change, suspension or discontinuance of products.</p>
<h2 class="text-xl font-display font-bold mb-4">5. Accuracy of Information</h2>
<p class="mb-6 text-primary/90">We are not responsible if information made available on this site is not accurate, complete or current. The material on this site is provided for general information only and should not be relied upon or used as the sole basis for making decisions without consulting primary, more accurate, more complete or more timely sources of information.</p>
<h2 class="text-xl font-display font-bold mb-4">6. Governing Law</h2>
<p class="mb-6 text-primary/90">These Terms shall be governed and construed in accordance with the laws of the United Kingdom, without regard to its conflict of law provisions.</p>
<h2 class="text-xl font-display font-bold mb-4">7. Changes</h2>
<p class="mb-6 text-primary/90">We reserve the right, at our sole discretion, to modify or replace these Terms at any time. If a revision is material we will try to provide at least 30 days notice prior to any new terms taking effect.</p>
<h2 class="text-xl font-display font-bold mb-4">8. Contact Us</h2>
<p class="text-primary/90">If you have any questions about these Terms, please contact us at legal@valerique.com.</p>
</div>
</div>
</main>
<!-- Minimal Footer -->
<footer class="bg-white border-t border-gray-200 py-8 px-4">
<div class="max-w-7xl mx-auto text-center">
<p class="text-primary/60 mb-4">© 2023 Valeria Trade Ltd. All rights reserved.</p>
<div class="flex justify-center space-x-6">
<a href="privacy.html" class="text-primary/60 hover:text-accent transition">Privacy Policy</a>
<a href="returns.html" class="text-primary/60 hover:text-accent transition">Returns & Exchanges</a>
<a href="contact.html" class="text-primary/60 hover:text-accent transition">Contact Us</a>
</div>
</div>
</footer>
<script src="https://unpkg.com/feather-icons"></script>
<script>
feather.replace();
</script>
</body>
</html>