<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Cürl Dump</title>

    <link href="https://fonts.googleapis.com/css2?family=Comic+Neue:wght@400;700&display=swap" rel="stylesheet">

    <style>

        :root {

            --purple: #8B5CF6;

            --pink: #EC4899;

            --bg: #F3F4F6;

        }


        body {

            font-family: 'Comic Neue', cursive;

            background: var(--bg);

            margin: 0;

            padding: 20px;

            min-height: 100vh;

        }


        .container {

            max-width: 800px;

            margin: 0 auto;

            text-align: center;

        }


        header {

            padding: 2rem;

            background: linear-gradient(45deg, var(--purple), var(--pink));

            color: white;

            border-radius: 20px;

            margin-bottom: 2rem;

            box-shadow: 0 4px 6px rgba(0,0,0,0.1);

        }


        h1 {

            font-size: 2.5rem;

            margin: 0;

            display: flex;

            align-items: center;

            justify-content: center;

            gap: 15px;

        }


        .emoji-wall {

            display: grid;

            grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));

            gap: 10px;

            margin: 2rem 0;

            font-size: 1.5rem;

        }


        .instructions {

            background: white;

            padding: 2rem;

            border-radius: 15px;

            box-shadow: 0 2px 4px rgba(0,0,0,0.05);

            margin: 2rem 0;

        }


        code {

            background: #1F2937;

            color: white;

            padding: 1rem;

            border-radius: 8px;

            display: block;

            margin: 1rem 0;

            font-family: monospace;

        }


        footer {

            margin-top: 3rem;

            color: #6B7280;

            padding: 1rem;

            border-top: 2px dashed var(--purple);

        }


        .cloudflare-badge {

            display: inline-flex;

            align-items: center;

            gap: 5px;

            margin-top: 1rem;

        }

    </style>

</head>

<body>

    <div class="container">

        <header>

            <h1>

                <span>DUMPER</span>

                <span>Cürl Dump(Pronounced as Cum Dump)</span>

                <span>٩(◕‿◕)۶</span>

            </h1>

            <p>Simple file sharing for command line warriors! ヽ(⌐■_■)ノ♪♬</p>

        </header>


        <div class="emoji-wall">

            (•‿•) (◑‿◐) (-‿◦☀) ಥ‿ಥ (づ ◕‿◕ )づ 

            ٩(◕‿◕)۶ (⌐■_■) (ツ) ᕙ(⇀‸↼‶)ᕗ (っ˘ڡ˘ς)

            ٩(•̤̀ᵕ•̤́๑) (ง'̀-'́)ง ( ˘▽˘)っ♨ (✌゚∀゚)☞

        </div>


        <div class="instructions">

            <h2>(☞゚∀゚)☞ How to Use</h2>

            

            <h3>📤 Upload File:</h3>

            <code>curl -T yourfile.txt https://dump.ajtazer.xyz</code>


            <h3>📥 Download File:</h3>

            <code>wget https://dump.ajtazer.xyz/files/filename.txt</code>


            <p style="margin-top: 1rem;">(◕‿◕) Files auto-delete after 24 hours!</p>

        </div>


        <div class="instructions">

            <h2>⚡ Features</h2>

            <div style="text-align: left;">

                <p>✔️ (⌐■_■) CLI-first design</p>

                <p>✔️ (╯°□°)╯ No registration needed</p>

                <p>✔️ (☞゚ヮ゚)☞ Temporary storage</p>

                <p>✔️ (っ◕‿◕)っ Direct download links</p>

            </div>

        </div>


        <footer>

            <p>Brought to you by ajtazer.xyz</p>

            <div class="cloudflare-badge">

                <span>Made with</span>

                <span style="color: var(--purple);">☁️ Cloudflare Workers</span>

                <span></span>

            </div>

            <p style="margin-top: 1rem;">(˵¯͒〰¯͒˵) Keep calm and curl on!</p>

        </footer>

    </div>

</body>

</html>