It looks like this is a web page, not a feed. I looked for a feed associated with this page, but couldn't find one. Please enter the address of your feed to validate.

Source: https://gyve7.com/app/

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.    <title>Page Not Found.</title>
  5.    <link href="/assets/css/styles_min.css" rel="stylesheet">
  6.    <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.    <meta name="apple-touch-fullscreen" content="YES">
  8.    <meta charset="UTF-8">
  9.    <link rel="apple-touch-icon" sizes="180x180" href="/assets/favicons/apple-touch-icon.png">
  10.    <link rel="icon" type="image/png" sizes="32x32" href="/assets/favicons/favicon-32x32.png">
  11.    <link rel="icon" type="image/png" sizes="16x16" href="/assets/favicons/favicon-16x16.png">
  12.    <link rel="manifest" href="/assets/favicons/site.webmanifest">
  13.    <script src="https://cdn.tailwindcss.com"></script>
  14.    <script src="https://unpkg.com/lucide@latest"></script>
  15.    <style>
  16.        /* 404 Page Specific Styles */
  17.        .error-container {
  18.            max-width: 600px;
  19.            margin: 0 auto;
  20.            padding: 2rem;
  21.            text-align: center;
  22.        }
  23.  
  24.        .error-illustration {
  25.            font-size: 8rem;
  26.            margin-bottom: 2rem;
  27.            color: rgb(var(--muted-foreground));
  28.            animation: float 3s ease-in-out infinite;
  29.        }
  30.  
  31.        @keyframes float {
  32.            0%, 100% { transform: translateY(0px); }
  33.            50% { transform: translateY(-10px); }
  34.        }
  35.  
  36.        .error-title {
  37.            font-size: 3rem;
  38.            font-weight: bold;
  39.            color: rgb(var(--foreground));
  40.            margin-bottom: 1rem;
  41.        }
  42.  
  43.        .error-subtitle {
  44.            font-size: 1.25rem;
  45.            color: rgb(var(--muted-foreground));
  46.            margin-bottom: 2rem;
  47.        }
  48.  
  49.        .error-description {
  50.            font-size: 1rem;
  51.            color: rgb(var(--foreground));
  52.            margin-bottom: 2rem;
  53.            line-height: 1.6;
  54.        }
  55.  
  56.        .home-button {
  57.            background: rgb(var(--primary));
  58.            color: rgb(var(--primary-foreground));
  59.            border: none;
  60.            padding: 1rem 2rem;
  61.            border-radius: 0.5rem;
  62.            font-size: 1.125rem;
  63.            font-weight: 600;
  64.            cursor: pointer;
  65.            transition: all 0.2s ease;
  66.            text-decoration: none;
  67.            display: inline-flex;
  68.            align-items: center;
  69.            gap: 0.5rem;
  70.        }
  71.  
  72.        .home-button:hover {
  73.            background: rgb(var(--primary));
  74.            transform: translateY(-2px);
  75.            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  76.        }
  77.  
  78.        .suggestions-container {
  79.            background: rgb(var(--card));
  80.            border: 1px solid rgb(var(--border));
  81.            border-radius: 0.5rem;
  82.            padding: 1.5rem;
  83.            margin: 2rem 0;
  84.            text-align: left;
  85.        }
  86.  
  87.        .suggestions-title {
  88.            font-size: 1.125rem;
  89.            font-weight: 600;
  90.            color: rgb(var(--foreground));
  91.            margin-bottom: 1rem;
  92.        }
  93.  
  94.        .suggestions-list {
  95.            list-style: none;
  96.            padding: 0;
  97.        }
  98.  
  99.        .suggestions-list li {
  100.            color: rgb(var(--foreground));
  101.            margin-bottom: 0.5rem;
  102.            position: relative;
  103.            padding-left: 1.5rem;
  104.        }
  105.  
  106.        .suggestions-list li:before {
  107.            content: "•";
  108.            position: absolute;
  109.            left: 0;
  110.            color: rgb(var(--primary));
  111.            font-weight: bold;
  112.        }
  113.  
  114.        .sad-emoji {
  115.            font-size: 4rem;
  116.            margin-bottom: 1rem;
  117.            animation: sad 2s ease-in-out infinite;
  118.        }
  119.  
  120.        @keyframes sad {
  121.            0%, 100% { transform: rotate(0deg); }
  122.            25% { transform: rotate(-5deg); }
  123.            75% { transform: rotate(5deg); }
  124.        }
  125.  
  126.        .error-code {
  127.            font-size: 8rem;
  128.            font-weight: bold;
  129.            color: rgb(var(--muted-foreground));
  130.            margin-bottom: 1rem;
  131.            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  132.        }
  133.    </style>
  134. </head>
  135. <body class="min-h-screen bg-background text-foreground dark">
  136. <header class="sticky top-0 z-50 w-full border-b border-border bg-background/95 backdrop-blur supports-[backdrop-filter]:bg-background/60">
  137.    <div class="container mx-auto flex h-16 items-center px-4">
  138.        <div class="flex items-center gap-4 w-64">
  139.            <button id="mobile-menu-btn" class="md:hidden p-2 hover:bg-accent rounded-md">
  140.                <i data-lucide="menu" class="h-5 w-5"></i>
  141.            </button>
  142.  
  143.            <div class="flex items-center gap-2">
  144.                <h3 class="text-xl font-bold"><a href="/" title="Home page">GYVE<span class="text-red-600 dark:text-red-400">7</span></a></h3>
  145.            </div>
  146.        </div>
  147.        <div class="flex-1 max-w-2xl mx-4 hidden md:block">
  148.            <form method="post" action="/en/search">
  149.                <div class="relative">
  150.                    <i data-lucide="search"
  151.                       class="absolute left-3 top-1/2 h-4 w-4 -translate-y-1/2 text-muted-foreground"></i>
  152.                    <input
  153.                            name="search"
  154.                            type="text"
  155.                            placeholder="Search for xxx videos..."
  156.                            class="w-full pl-10 pr-20 py-2 bg-input border border-border rounded-md focus:outline-none focus:ring-2 focus:ring-ring"
  157.                    />
  158.                    <button class="absolute right-1 top-1/2 -translate-y-1/2 bg-primary text-primary-foreground px-3 py-1 rounded-md text-sm hover:bg-primary/90">
  159.                        Search                    </button>
  160.                </div>
  161.            </form>
  162.        </div>
  163.        <div class="flex items-center gap-2">
  164.            <button id="theme-toggle-mobile" class="md:hidden p-2 hover:bg-accent rounded-md">
  165.                <i data-lucide="sun" class="h-5 w-5 sun-icon"></i>
  166.                <i data-lucide="moon" class="h-5 w-5 moon-icon hidden"></i>
  167.            </button>
  168.            <button id="theme-toggle-desktop" class="hidden md:flex p-2 hover:bg-accent rounded-md">
  169.                <i data-lucide="sun" class="h-5 w-5 sun-icon"></i>
  170.                <i data-lucide="moon" class="h-5 w-5 moon-icon hidden"></i>
  171.            </button>
  172.        </div>
  173.    </div>
  174.    <div class="border-t border-border md:hidden">
  175.        <form method="post" action="/en/search">
  176.            <div class="container mx-auto p-4">
  177.                <div class="relative">
  178.                    <i data-lucide="search"
  179.                       class="absolute left-3 top-1/2 h-4 w-4 -translate-y-1/2 text-muted-foreground"></i>
  180.                    <input
  181.                            name="search"
  182.                            type="text"
  183.                            placeholder="Search for xxx videos..."
  184.                            class="w-full pl-10 pr-20 py-2 bg-input border border-border rounded-md focus:outline-none focus:ring-2 focus:ring-ring"
  185.                    />
  186.                    <button class="absolute right-1 top-1/2 -translate-y-1/2 bg-primary text-primary-foreground px-3 py-1 rounded-md text-sm hover:bg-primary/90">
  187.                        Search                    </button>
  188.                </div>
  189.            </div>
  190.        </form>
  191.    </div>
  192. </header>
  193. <div class="flex">
  194.    <aside id="sidebar" class="w-64 border-r border-border bg-muted/5 hidden md:block fixed md:static inset-y-0 left-0 z-50 transform -translate-x-full md:translate-x-0 sidebar-transition">
  195.        <div class="p-4 border-b border-border flex items-center justify-between md:hidden">
  196.            <h2 class="text-lg font-semibold">Menu</h2>
  197.            <button id="close-sidebar-btn" class="p-2 hover:bg-accent rounded-md">
  198.                <i data-lucide="x" class="h-5 w-5"></i>
  199.            </button>
  200.        </div>
  201.        <div class="p-4 space-y-6">
  202.            <div>
  203.                <h3 class="font-semibold text-sm text-muted-foreground uppercase tracking-wider mb-3">
  204.                    Videos
  205.                </h3>
  206.                <nav class="space-y-1"><a href="/en/new/" title="New Videos" class="w-full text-left px-3 py-2 rounded-md text-sm hover:bg-accent hover:text-accent-foreground block">New Videos</a><a href="/en/best/" title="Best Videos" class="w-full text-left px-3 py-2 rounded-md text-sm hover:bg-accent hover:text-accent-foreground block">Best Videos</a><a href="/en/week/" title="Best of the last week" class="w-full text-left px-3 py-2 rounded-md text-sm hover:bg-accent hover:text-accent-foreground block">Best of the last week</a><a href="/en/month/" title="Best of the last month" class="w-full text-left px-3 py-2 rounded-md text-sm hover:bg-accent hover:text-accent-foreground block">Best of the last month</a><a href="/en/history/" title="History" class="w-full text-left px-3 py-2 rounded-md text-sm hover:bg-accent hover:text-accent-foreground block">History</a></nav>
  207.            </div><div>
  208.                <h3 class="font-semibold text-sm text-muted-foreground uppercase tracking-wider mb-3">Categories</h3>
  209.                <nav class="space-y-1">
  210.        <a class="w-full text-left px-3 py-2 rounded-md text-sm hover:bg-accent hover:text-accent-foreground block border" href="/en/categories"  title="All Categories"> All Categories</a>
  211.        </nav>
  212.            </div><div>
  213.                <h3 class="font-semibold text-sm text-muted-foreground uppercase tracking-wider mb-3">Info</h3>
  214.                <nav class="space-y-1">
  215.                    <a href="/privacy.php" title="Privacy Policy" class="w-full text-left px-3 py-2 rounded-md text-sm hover:bg-accent hover:text-accent-foreground block">Privacy Policy</a>
  216.                    <a href="/contacts.php" title="Contacts" class="w-full text-left px-3 py-2 rounded-md text-sm hover:bg-accent hover:text-accent-foreground block">Contacts</a>
  217.                    <a href="/terms.php" title="Terms of Use" class="w-full text-left px-3 py-2 rounded-md text-sm hover:bg-accent hover:text-accent-foreground block">Terms of Use</a>
  218.                    <a href="/about.php" title="About" class="w-full text-left px-3 py-2 rounded-md text-sm hover:bg-accent hover:text-accent-foreground block">About</a>
  219.                </nav>
  220.            </div>
  221.        </div>
  222.    </aside>    <main class="flex-1">
  223.        <div class="container mx-auto px-4 py-12">
  224.            <div class="error-container">
  225.                <div class="error-illustration">
  226.                    <div class="sad-emoji">😢</div>
  227.                </div>
  228.                <div class="error-code">404</div>
  229.                <h1 class="error-title">Page Not Found</h1>
  230.                <p class="error-subtitle">Oops! The content you're looking for cannot be found.</p>
  231.                <p class="error-description">
  232.                    It seems like the page you were trying to reach has been moved, deleted, or never existed.
  233.                    Don't worry though - we have plenty of amazing content waiting for you!
  234.                </p>
  235.                <a href="/" class="home-button">
  236.                    <i data-lucide="home" class="h-5 w-5"></i>
  237.                    Continue to Gyve7.com                </a>
  238.                <div class="suggestions-container">
  239.                    <h3 class="suggestions-title">Here are some helpful suggestions:</h3>
  240.                    <ul class="suggestions-list">
  241.                        <li>Check the URL for any typos</li>
  242.                        <li>Use our search bar to find what you're looking for</li>
  243.                        <li>Browse our popular categories</li>
  244.                        <li>Try going back to the previous page</li>
  245.                        <li>Visit our homepage for fresh content</li>
  246.                    </ul>
  247.                </div>
  248.                <div class="text-muted-foreground">
  249.                    <p>If you believe this is an error, please contact our support team.</p>
  250.                </div>
  251.            </div>
  252.        </div>
  253.    </main>
  254. </div>
  255. <script src="/assets/js/functions_min.js"></script>
  256. <script>
  257.    document.addEventListener('DOMContentLoaded', () => {
  258.        lucide.createIcons();
  259.        initThemeToggle();
  260.        initMobileSidebar();
  261.        initDropdowns();
  262.    });
  263. </script>
  264. <script defer src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon='{"version":"2024.11.0","token":"3e4927555ecb435bbddcc3ad1f778912","r":1,"server_timing":{"name":{"cfCacheStatus":true,"cfEdge":true,"cfExtPri":true,"cfL4":true,"cfOrigin":true,"cfSpeedBrain":true},"location_startswith":null}}' crossorigin="anonymous"></script>
  265. </body>
  266. </html>
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda