Welcome to

Foregans

We’re coding a new digital experience for you.
Our website will be live shortly
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Foregans - Building tools, delivering value.</title>
    <style>
        body { font-family: Arial, sans-serif; line-height: 1.6; }
        .container { max-width: 1200px; margin: auto; padding: 0 20px; }
        header { background: #333; color: #fff; padding: 1rem 0; text-align: center; }
        header h1 { margin: 0; }
        main { padding: 2rem 0; }
        footer { background: #333; color: #fff; text-align: center; padding: 1rem 0; }
    </style>
</head>
<body>
    <div class="container">
        <header>
            <h1>Foregans</h1>
            <p>Building tools, delivering value.</p>
        </header>
        <main>
            <h2>About Us</h2>
            <p>Welcome to Foregans, Building tools, delivering value.</p>
            <!-- More sections can be added here -->
        </main>
        <footer>
            <p>&copy; 2024 Foregans. All rights reserved.</p>
        </footer>
    </div>
</body>
</html>