JSFiddle - React, Tailwind, and code Playground

by gugumetal

HTML

<!DOCTYPE html>
<html lang="pt-br">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Site em Desenvolvimento</title>
    <style>
        body, html {
            height: 100%;
            margin: 0;
            font-family: 'Arial', sans-serif;
            display: flex;
            flex-direction: column;
        }
        header, footer {
            flex: 0 0 auto;
            background: #007bff;
            color: #fff;
            padding: 20px;
            text-align: center;
        }
        .content {
            flex: 1 0 auto;
            padding: 20px;
            margin: 0 auto;
            max-width: 800px;
            background: white;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
            text-align: center;
        }
        footer {
            background: #333;
        }
    </style>
</head>
<body>
    <header>
        <h1>Site em Desenvolvimento</h1>
    </header>
    <div class="content">
        <h2>Em breve, um novo site!</h2>
        <p>Estamos trabalhando para criar um site incrível para você. Este site está sendo desenvolvido pela Notridan Tecnologia e estará disponível em breve. Agradecemos sua paciência e compreensão!</p>
    </div>
    <footer>
        <p>&copy; 2023 Notridan Tecnologia. Todos os direitos reservados.</p>
    </footer>
</body>
</html>