DEV Community

Query Filter
Query Filter

Posted on

bridge131

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>System Diagrams Master View</title>
    <style>
        body { font-family: sans-serif; background: #f4f4f4; padding: 20px; }
        .diagram-container { 
            background: white; 
            margin-bottom: 40px; 
            padding: 20px; 
            border-radius: 8px; 
            box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
        }
        h2 { color: #333; border-bottom: 2px solid #0078d4; padding-bottom: 5px; }
        /* This ensures the SVG scales correctly inside the container */
        object { width: 100%; height: 500px; border: none; }
    </style>
</head>
<body>

    <h1>Project Architecture & Bridges</h1>

    <div class="diagram-container">
        <h2>DDS Bridge (ZCC)</h2>
        <object data="cash_ddsbridge_slsZCC.html" type="text/html"></object>
    </div>

    <div class="diagram-container">
        <h2>Global Hub Router (NAM)</h2>
        <object data="globalHubRouter_nam.html" type="text/html"></object>
    </div>

    <div class="diagram-container">
        <h2>Router Instance 1</h2>
        <object data="nam_router_inst1.html" type="text/html"></object>
    </div>

    <div class="diagram-container">
        <h2>Router Instance 2</h2>
        <object data="nam_router_inst2.html" type="text/html"></object>
    </div>

</body>
</html>
Enter fullscreen mode Exit fullscreen mode

Top comments (0)