Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 31 additions & 1 deletion docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,37 @@
"x": "https://x.com/worldnetwork",
"github": "https://github.com/worldcoin",
"discord": "https://world.org/discord"
}
},
"links": [
{
"items": [
{
"label": "About World",
"href": "https://world.org"
},
{
"label": "Developers",
"href": "https://world.org/developers"
},
{
"label": "Whitepaper",
"href": "https://whitepaper.world.org"
},
{
"label": "Open Source",
"href": "https://github.com/worldcoin"
},
{
"label": "Ecosystem",
"href": "https://world.org/ecosystem"
},
{
"label": "Careers",
"href": "https://world.org/careers"
}
]
}
]
},
"contextual": {
"options": [
Expand Down
60 changes: 60 additions & 0 deletions tailwind.css
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,66 @@
.dark .landing-footer-links {
color: #F3F2F0;
}

/* ------------------------------------------------------------------ */
/* Docs-page footer (Docs 3.0) — restyle Mintlify's advanced footer */
/* into the design's single row: "™ 2026 World" left, links right. */
/* The homepage keeps its own hand-built .landing-footer. */
/* ------------------------------------------------------------------ */
#footer.advanced-footer {
border-top: none;
}
#footer.advanced-footer > div {
max-width: 1728px !important;
}
@media (min-width: 1024px) {
#footer.advanced-footer > div {
padding: 48px 96px 64px !important;
}
}
/* Replace the footer logo with the trademark line from the design. */
#footer.advanced-footer .nav-logo {
display: none !important;
}
#footer.advanced-footer a.select-none::after {
content: "™ 2026 World";
font-size: 16px;
line-height: 1.4;
font-weight: 300;
color: #181818;
white-space: nowrap;
}
.dark #footer.advanced-footer a.select-none::after {
color: #F3F2F0;
}
/* Link row: right-aligned single row, ink links per design. */
@media (min-width: 768px) {
#footer.advanced-footer .md\:justify-center {
justify-content: flex-end !important;
gap: 40px !important;
}
}
#footer.advanced-footer a[class*="max-w-36"] {
max-width: none !important;
font-size: 16px !important;
line-height: 1.4;
font-weight: 300;
color: #181818 !important;
}
#footer.advanced-footer a[class*="max-w-36"]:hover {
color: #181818 !important;
text-decoration: underline;
text-underline-offset: 4px;
}
.dark #footer.advanced-footer a[class*="max-w-36"],
.dark #footer.advanced-footer a[class*="max-w-36"]:hover {
color: #F3F2F0 !important;
}
/* The design's footer carries no social icons (those links live in the
footer links row; GitHub also sits in the Resources menu). */
#footer.advanced-footer div[class*="min-w-[140px]"] {
display: none !important;
}
@media (max-width: 900px) {
.landing-footer-inner {
padding: 0 24px 48px;
Expand Down
Loading