Files
Andrew Zambazos 207a849f06 Add Nebula Browser app, UI and assets
Add initial Nebula Browser project skeleton: CMakeLists to configure and link CEF (including post-build steps to copy runtime and UI files), a Windows CEF-based entry (app/main.cpp) that initializes CEF and loads the bundled UI, and a full ui/ and assets/ tree (HTML, CSS, JS, fonts, icons, and branding images). Update .gitignore to ignore build/out, thirdparty/cef, IDE and common OS artifacts.
2026-05-13 22:17:58 +12:00

32 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nebula Browser</title>
<link rel="stylesheet" href="../css/style.css">
</head>
<body class="cef-shell">
<main class="cef-start">
<section class="cef-card">
<p class="eyebrow">Nebula Browser</p>
<h1>Browse with CEF</h1>
<p class="lede">This page is now a lightweight start surface. Tabs, windows, and page hosting are handled by the CEF application.</p>
<form id="start-form" class="start-search" autocomplete="off">
<label class="sr-only" for="start-url">Search or enter address</label>
<input id="start-url" type="text" placeholder="Search or enter address" autofocus>
<button type="submit">Go</button>
</form>
<nav class="quick-links" aria-label="Nebula pages">
<a href="home.html">Home</a>
<a href="settings.html">Settings</a>
<a href="downloads.html">Downloads</a>
</nav>
</section>
</main>
<script src="../js/script.js"></script>
</body>
</html>