You've already forked computing-box
All checks were successful
Pre-release on non-main branches / prerelease (push) Successful in 27s
- [X] New User Interface (Responsive) - [X] Two's Compliment Simulator - [X] Extended Binary Simulator (Custom bit sizes) - [X] Unified Binary Simulator (Unsigned & Two's Completment combined) - [X] Extended Hexadecimal Simulator - [X] Unified Hexadecimal Simulator (For GCSE & A Level Specification) - [X] Enhanced Gate Simulator (Truth Table Creator) - [X] Compound Gate Simulator - [ ] Computer Components Simulator Signed-off-by: Alexander Lyall <alex@adcm.uk>
47 lines
1.4 KiB
Plaintext
47 lines
1.4 KiB
Plaintext
---
|
|
import '../styles/global.css';
|
|
|
|
const { title = "Computing:Box" } = Astro.props;
|
|
---
|
|
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
<title>{title}</title>
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700;800;900&display=swap" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<header class="siteNav">
|
|
<div class="navInner">
|
|
<a class="brand" href="/">
|
|
<img class="brandLogo" src="/images/computing-box-logo.svg" alt="Computing:Box logo" />
|
|
<span class="brandName">Computing:Box</span>
|
|
</a>
|
|
|
|
<nav class="navLinks" aria-label="Site navigation">
|
|
<a href="/about">About</a>
|
|
<a href="/binary">Binary</a>
|
|
<a href="/hexadecimal">Hexadecimal</a>
|
|
<a href="/hex-colours">Hex Colours</a>
|
|
<a href="/logic-gates">Logic Gates</a>
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
|
|
<main class="pageWrap">
|
|
<slot />
|
|
</main>
|
|
|
|
<footer class="siteFooter">
|
|
<div class="footerInner">
|
|
<div>Computer Science Concept Simulators</div>
|
|
<div>© {new Date().getFullYear()} Computing:Box • Created with ♥ by Mr A Lyall</div>
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
</html> |