Skip to content

Commit

Permalink
Fix default text line width
Browse files Browse the repository at this point in the history
  • Loading branch information
ramram-mf committed Sep 20, 2024
1 parent 47cb92b commit 9246311
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions network-api/networkapi/wagtailpages/pagemodels/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,13 @@
from .mixin.foundation_metadata import FoundationMetadataPageMixin
from .mixin.foundation_navigation import FoundationNavigationPageMixin

hero_intro_heading_default_text = "A healthy internet is one in which privacy, openness, and inclusion are the norms. "
hero_intro_body_default_text = "Mozilla empowers consumers to demand better online privacy, trustworthy AI, and safe online experiences from Big Tech and governments. We work across borders, disciplines, and technologies to uphold principles like privacy, inclusion and decentralization online."
hero_intro_heading_default_text = "A healthy internet is one in which privacy, openness, and inclusion are the norms."
hero_intro_body_default_text = (
"Mozilla empowers consumers to demand better online privacy, trustworthy AI, "
"and safe online experiences from Big Tech and governments. We work across "
"borders, disciplines, and technologies to uphold principles like privacy, "
"inclusion and decentralization online."
)


class BasePage(FoundationMetadataPageMixin, FoundationNavigationPageMixin, Page):
Expand Down

0 comments on commit 9246311

Please sign in to comment.