feat: convert to an astro application (!9)

Reviewed-on: https://codeberg.org/nhcarrigan/docs/pulls/9
Co-authored-by: Naomi Carrigan <commits@nhcarrigan.com>
Co-committed-by: Naomi Carrigan <commits@nhcarrigan.com>
This commit is contained in:
2024-08-23 23:49:24 +00:00
committed by Naomi the Technomancer
parent 2898736099
commit 4cc44ae423
43 changed files with 4727 additions and 1368 deletions

View File

@ -0,0 +1,99 @@
export const navigation = [
{
label: "About Us",
items: [
{
label: "Hire us!",
link: "/about/hire"
},
{
label: "Support Our Work 💜",
link: "/about/donate"
},
{
label: "Contact",
link: "/about/contact"
}
]
},
{
label: "Legal Information",
items: [
{
label: "Terms of Service",
link: "/legal/terms"
},
{
label: "Privacy Policy",
link: "/legal/privacy"
},
{
label: "Software License",
link: "/legal/license"
},
{
label: "Security Policy",
link: "/legal/security"
},
{
label: "DMCA and Copyright",
link: "/legal/dmca"
}
]
},
{
label: "Community Policies",
items: [
{
label: "Code of Conduct",
link: "/community/coc"
},
{
label: "Community Guidelines",
link: "/community/guide"
},
{
label: "Appeal a Sanction",
link: "/community/appeal"
}
]
},
{
label: "Development Documentation",
items: [
{
label: "Contributing Guide",
link: "/dev/contributing"
},
{
label: "Contributor Covenant",
link: "/dev/covenant"
},
{
label: "Issue/PR Labels",
link: "/dev/labels"
},
{
label: "Development Environment",
link: "/dev/environment"
},
{
label: "Server Setup",
link: "/dev/servers"
}
]
},
{
label: "Staff Guidelines",
items: [
{
label: "Staff Handbook",
link: "/staff/handbook"
},
{
label: "Join our Team",
link: "/staff/apply"
}
]
}
]