baraqex
Version:
A powerful full-stack framework for modern web development
36 lines (35 loc) • 1.08 kB
HTML
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Frontend Hamroun SSR Template</title>
<meta name="description" content="Server-side rendered Frontend Hamroun application">
<style>
body {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
#app-root {
min-height: 100vh;
}
.loading {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
font-size: 1.2rem;
}
</style>
</head>
<body>
<div id="app-root" data-ssr-root="true">
<div class="loading">
<div>Loading Frontend Hamroun App...</div>
</div>
</div>
<script src="/client.js" type="module" defer></script>
<script id="__APP_DATA__" type="application/json">{}</script>
</body>
</html>