Skip to content

Commit 49f976f

Browse files
committed
fix bad links
1 parent 4fa84b2 commit 49f976f

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

src/components/Navbar.astro

+6-4
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,23 @@ const { title } = Astro.props;
88
const links = [
99
{
1010
name: "Home",
11-
href: ".",
11+
href: "/",
1212
},
1313
{
1414
name: "Usage",
15-
href: "usage",
15+
href: "/usage",
1616
},
1717
{
1818
name: 'Modular PlusCal',
19-
href: 'mpcal',
19+
href: '/mpcal',
2020
},
2121
];
2222
---
2323

2424
<header class="flex flex-row flex-wrap gap-8 rounded-t outline outline-2 outline-offset-8 outline-slate-800 mb-8 items-end">
25-
<h1 class="text-4xl"><a href=".">DistCompiler/PGo</a></h1>
25+
<h1 class="text-4xl">
26+
<a href="/">DistCompiler/PGo</a>
27+
</h1>
2628
<nav class="mr-8">
2729
<ul class="flex flex-row gap-4 text-lg font-medium">
2830
{

src/pages/index.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ It supports compilation of all PlusCal control flow constructs.
4545
PGo also supports a vast majority of the value-level TLA+ supported by TLC.
4646
See the pull requests and issues for documentation of ongoing work.
4747

48-
To try PGo out anyway, check out the <a href="usage">usage documentation</a> or the current <a href="mpcal">description of Modular PlusCal</a>.
48+
To try PGo out anyway, check out the <a href="/usage">usage documentation</a> or the current <a href="/mpcal">description of Modular PlusCal</a>.

0 commit comments

Comments
 (0)