Skip to content

Commit aebf63b

Browse files
committed
rename governance into Rocq teams
1 parent c900027 commit aebf63b

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

src/global/url.ml

+2-2
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ let news = "/news"
9494
let news_post v = "/news/" ^ v
9595
let jobs = "/jobs"
9696
let donation = "/donation"
97-
let governance = "/governance"
98-
let governance_team id = "/governance/" ^ id
97+
let governance = "/rocq-teams"
98+
let governance_team id = "/rocq-teams/" ^ id
9999
let privacy_policy = "/policies/privacy-policy"
100100
let governance_policy = "/policies/governance"
101101
let code_of_conduct = "/policies/code-of-conduct"

src/rocqproverorg_frontend/components/footer.eml

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ let ecosystem = [
2929
]
3030

3131
let policies = [
32-
(Url.governance, "Rocq Team");
33-
(Url.governance_policy, "Governance");
32+
(Url.governance, "Rocq Teams");
33+
(Url.governance_policy, "Rocq Governance");
3434
(Url.privacy_policy, "Privacy");
3535
(Url.code_of_conduct, "Code of Conduct");
3636
]

src/rocqproverorg_frontend/pages/governance.eml

+2-3
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ let render_team_card (team: Data.Governance.team) member_label =
3232

3333
let render ~teams ~working_groups =
3434
Layout.render
35-
~title:"Governance"
35+
~title:"Rocq Teams"
3636
~description:"Rocq Governance" @@
3737
<div class="w-full border-b intro-section-simple dark:dark-intro-section-simple md:bg-transparent dark:border-none bg-cover py-16">
3838
<div class="container-fluid">
3939
<div class="flex md:flex-row flex-col">
4040
<div class="w-full m-auto mb-4 md:mb-0">
41-
<h1 class="font-bold mb-2 text-title dark:text-dark-title">Governance</h1>
41+
<h1 class="font-bold mb-2 text-title dark:text-dark-title">Rocq Teams</h1>
4242
<p class="text-title dark:text-dark-title">The projects running under Rocq and the people behind it
4343
</p>
4444
</div>
@@ -49,7 +49,6 @@ Layout.render
4949
</div>
5050
</div>
5151
<div class="container-fluid py-10">
52-
<h2 class="font-bold text-2xl mb-2 text-title dark:text-dark-title">Teams</h2>
5352
<p class="text-lg text-content dark:text-dark-content">See who the maintainers of the various official Rocq Projects are. We present a comprehensive list structured by project / purpose</p>
5453
<div class="grid grid-cols-1 md:grid-cols-2 gap-8 mt-16">
5554
<% teams |> List.iter (fun (team : Data.Governance.team) -> %>

0 commit comments

Comments
 (0)