Jump to content

Verified Wikipedia:General disclaimer: Difference between revisions

From Verified Wikipedia
No edit summary
Tag: Reverted
Blanked the page
Tags: Blanking Reverted
Line 1: Line 1:
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Disclaimer - VerifiedWikipedia.org</title>
    <!-- Load Tailwind CSS -->
    <script src="https://cdn.tailwindcss.com"></script>
    <script>
        // Configure Tailwind to use the Inter font and set up custom colors
        tailwind.config = {
            theme: {
                extend: {
                    fontFamily: {
                        sans: ['Inter', 'sans-serif'],
                    },
                    colors: {
                        // Updated palette for a more corporate look
                        'primary-blue': '#1e40af', // Deep Corporate Blue (blue-800)
                        'secondary-blue': '#3b82f6', // Brighter Blue for links (blue-500)
                        'app-bg': '#f3f4f6', // Very light grey background
                        'app-card': '#ffffff', // Crisp white card background
                    }
                }
            }
        }
    </script>
    <style>
        /* Apply smooth transitions to hover effects */
        .link-hover {
            transition: color 0.2s ease-in-out;
        }
    </style>
</head>
<body class="font-sans bg-app-bg min-h-screen p-4 sm:p-8 flex justify-center items-start">


    <!-- Main Content Container: Tighter shadow, clean white background -->
    <div class="w-full max-w-4xl mx-auto mt-10 p-8 sm:p-12 bg-app-card rounded-lg shadow-lg border-t-8 border-primary-blue">
        <!-- Header with Strong Accent -->
        <h1 class="text-3xl sm:text-4xl font-black text-gray-800 text-center mb-10 pb-4 tracking-tight">
            Official Disclaimer
        </h1>
       
        <!-- Content Section -->
        <div class="space-y-8 text-gray-600 leading-8">
            <!-- Paragraph 1: Core Content -->
            <p class="text-base sm:text-lg">
                The information provided on <strong class="text-gray-900 font-semibold">VerifiedWikipedia.org</strong> is published in good faith, verified through multi-layer editorial and expert review, and intended for general informational and educational purposes only. While we strive to maintain the highest standards of accuracy, neutrality, and factual integrity, <strong class="text-gray-900 font-semibold">VerifiedWikipedia.org</strong> makes no warranties or representations of absolute completeness, timeliness, or error-free content. Users are encouraged to independently verify sensitive, high-impact, or specialized information—such as legal, medical, financial, or policy-related data—before making decisions based on the content found on this platform.
            </p>
            <!-- Paragraph 2: Liability -->
            <p class="text-base sm:text-lg">
                <strong class="text-gray-900 font-semibold">VerifiedWikipedia.org</strong> is not liable for any losses, damages, or consequences arising from the use of our information, reliance on articles, external links, or user interpretations. External references and outbound links are provided solely for convenience, and the platform does not control or guarantee the accuracy of external websites.
            </p>
            <!-- Paragraph 3: Updates and Editorial -->
            <p class="text-base sm:text-lg">
                By accessing this website, users acknowledge that content is continually updated, refined, and improved, and may change without prior notice. All editorial decisions are made in alignment with our verification standards and neutrality policies.
            </p>
            <!-- Contact Information with Accent Border -->
            <div class="pt-6 border-t border-gray-200">
                <p class="text-base sm:text-lg text-gray-700">
                    If you have concerns about the accuracy of any content, please contact us at
                    <a href="mailto:info@verifiedwikipedia.org"
                      class="font-semibold text-secondary-blue hover:text-primary-blue link-hover underline underline-offset-4">
                        info@verifiedwikipedia.org
                    </a>
                    so we can review and address it responsibly.
                </p>
            </div>
        </div>
        <!-- End Content Section -->
    </div>
</body>
</html>

Revision as of 03:32, 3 December 2025