Merge pull request #27046 from overleaf/rh-header-footer

Header and footer changes

GitOrigin-RevId: 963b07e6240401b6fc87ace7328b6f5a2046dc6c
This commit is contained in:
roo hutton
2025-07-15 08:05:52 +00:00
committed by Copybot
parent 1b70f09bee
commit caedd0f850
8 changed files with 77 additions and 65 deletions
@@ -11,7 +11,8 @@
"Get Involved": "",
"Help": "",
"Learn": "",
"Plans and Pricing": "",
"Pricing": "",
"Solutions": "",
"a_custom_size_has_been_used_in_the_latex_code": "",
"a_fatal_compile_error_that_completely_blocks_compilation": "",
"a_file_with_that_name_already_exists_and_will_be_overriden": "",
@@ -357,6 +358,7 @@
"currently_subscribed_to_plan": "",
"custom": "",
"custom_borders": "",
"customer_stories": "",
"customize_your_group_subscription": "",
"customizing_figures": "",
"customizing_tables": "",
@@ -601,10 +603,12 @@
"footer_contact_us": "",
"footer_navigation": "",
"footnotes": "",
"for_enterprise": "",
"for_business": "",
"for_government": "",
"for_individuals_and_groups": "",
"for_groups_and_organizations": "",
"for_individuals": "",
"for_more_information_see_managed_accounts_section": "",
"for_publishers": "",
"for_students": "",
"for_universities": "",
"format": "",
@@ -1167,7 +1171,6 @@
"other_logs_and_files": "",
"other_output_files": "",
"our_team_will_get_back_to_you_shortly": "",
"our_values": "",
"out_of_sync": "",
"out_of_sync_detail": "",
"output_file": "",
@@ -1273,10 +1276,8 @@
"postal_code": "",
"premium": "",
"premium_feature": "",
"premium_features": "",
"premium_plan_label": "",
"presentation_mode": "",
"press_and_awards": "",
"previous_page": "",
"price": "",
"primarily_work_study_question": "",
@@ -2089,7 +2090,6 @@
"what_should_we_call_you": "",
"whats_different_in_the_new_editor": "",
"when_you_tick_the_include_caption_box": "",
"why_latex": "",
"why_might_this_happen": "",
"why_not_pause_instead": "",
"wide": "",
@@ -33,7 +33,7 @@ function SidebarDsNav() {
const sendMB = useSendProjectListMB()
const { sessionUser, showSubscriptionLink, items } = getMeta('ol-navbar')
const helpItem = items.find(
item => item.text === 'help'
item => item.text === 'help_and_resources'
) as NavbarDropdownItemData
const { containerRef, scrolledUp, scrolledDown } = useScrolled()
return (
@@ -21,12 +21,20 @@ function FatFooter() {
title: t('About'),
links: [
{ href: '/about', label: t('footer_about_us') },
{ href: '/about/values', label: t('our_values') },
{ href: 'https://digitalscience.pinpointhq.com/', label: t('careers') },
{ href: '/for/press', label: t('press_and_awards') },
{ href: '/blog', label: t('blog') },
],
},
{
title: t('Solutions'),
links: [
{ href: '/for/enterprises', label: t('for_business') },
{ href: '/for/universities', label: t('for_universities') },
{ href: '/for/government', label: t('for_government') },
{ href: '/for/publishers', label: t('for_publishers') },
{ href: '/about/customer-stories', label: t('customer_stories') },
],
},
{
title: t('Learn'),
links: [
@@ -45,23 +53,20 @@ function FatFooter() {
],
},
{
title: t('Plans and Pricing'),
title: t('Pricing'),
links: [
{
href: '/learn/how-to/Overleaf_premium_features',
label: t('premium_features'),
href: '/user/subscription/plans?itm_referrer=footer-for-indv',
label: t('for_individuals'),
},
{
href: '/user/subscription/plans?itm_referrer=footer-for-indv-groups',
label: t('for_individuals_and_groups'),
href: '/user/subscription/plans?plan=group&itm_referrer=footer-for-groups',
label: t('for_groups_and_organizations'),
},
{ href: '/for/enterprises', label: t('for_enterprise') },
{ href: '/for/universities', label: t('for_universities') },
{
href: '/user/subscription/plans?itm_referrer=footer-for-students#student-annual',
label: t('for_students'),
},
{ href: '/for/government', label: t('for_government') },
],
},
{
@@ -77,7 +82,6 @@ function FatFooter() {
{
title: t('Help'),
links: [
{ href: '/about/why-latex', label: t('why_latex') },
{ href: '/learn', label: t('Documentation') },
{ href: '/contact', label: t('footer_contact_us') },
{ href: 'https://status.overleaf.com/', label: t('website_status') },
@@ -354,12 +354,12 @@ footer.site-footer {
}
.fat-footer-sections {
grid-template-columns: repeat(6, 1fr);
grid-template-columns: repeat(7, 1fr);
grid-template-rows: auto;
}
.footer-section:last-of-type {
grid-column: 6;
grid-column: 7;
}
}
}
@@ -279,12 +279,12 @@ footer.site-footer {
}
.fat-footer-sections {
grid-template-columns: repeat(6, 1fr);
grid-template-columns: repeat(7, 1fr);
grid-template-rows: auto;
}
.footer-section:last-of-type {
grid-column: 6;
grid-column: 7;
}
}
}