Skip to content

Commit 5b11aed

Browse files
committed
added navigation
1 parent 3fae3ef commit 5b11aed

File tree

3 files changed

+36
-5
lines changed

3 files changed

+36
-5
lines changed

index.html

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,13 @@
5757
<link rel="stylesheet" href="style.css" />
5858
</head>
5959
<body>
60-
<div class="hero">
60+
<header>
6161
<img src="baqup-tools-logo-optimized.svg" alt="baqup tools logo" />
62-
</div>
62+
<nav>
63+
<a href="index.html">Backup</a>
64+
<a href="visualizer.html">Visualizer</a>
65+
</nav>
66+
</header>
6367

6468
<h2>It's your money. It's your data.<br />Back it up!</h2>
6569

style.css

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,14 @@ a:not(.bookmarklet):hover {
3434
text-decoration: none;
3535
}
3636

37-
.hero img {
37+
header {
38+
display: flex;
39+
flex-direction: row;
40+
justify-content: space-between;
41+
align-items: start;
42+
}
43+
44+
header img {
3845
width: clamp(100px, 100vw, 300px);
3946
}
4047

visualizer.html

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,13 @@
5858
<link rel="stylesheet" href="visualizer.css" />
5959
</head>
6060
<body>
61-
<div class="hero">
61+
<header>
6262
<img src="baqup-tools-logo-optimized.svg" alt="baqup tools logo" />
63-
</div>
63+
<nav>
64+
<a href="index.html">Backup</a>
65+
<a href="visualizer.html">Visualizer</a>
66+
</nav>
67+
</header>
6468

6569
<h1>Snapshot Visualizers</h1>
6670
<p>You can use these tools to view your backups offline.</p>
@@ -95,6 +99,22 @@ <h2>Qubes</h2>
9599
style="width: 100%"
96100
/>
97101

102+
<h2>About Me</h2>
103+
<p>
104+
<a href="https://github.com/wraybowling">Wray Bowling</a> is a freelance
105+
web developer living in South Carolina.
106+
</p>
107+
108+
<p>
109+
If you found this tool useful,
110+
<a
111+
href="https://github.com/sponsors/wraybowling/signup"
112+
target="_blank"
113+
rel="noopener"
114+
>donations are appreciated</a
115+
>.
116+
</p>
117+
98118
<script src="visualizer.js"></script>
99119
</body>
100120
</html>

0 commit comments

Comments
 (0)