Skip to content

Commit 1ac5124

Browse files
Tom GotsmanTom Gotsman
authored andcommitted
update google headers
1 parent 5a3cd26 commit 1ac5124

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

pcweb/pages/landing/landing.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,11 @@
2020
from pcweb.templates.mainpage import mainpage
2121

2222

23-
@mainpage(path="/", title="Reflex · Web apps in Pure Python", meta=meta_tags)
23+
@mainpage(
24+
path="/",
25+
title="Reflex · The platform to build and scale enterprise apps",
26+
meta=meta_tags,
27+
)
2428
def landing() -> rx.Component:
2529
return rx.el.div(
2630
hero(),

pcweb/templates/mainpage.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,14 @@
55
from pcweb.meta.meta import meta_tags
66
from pcweb.route import Route
77

8-
DEFAULT_TITLE = "Web Apps in Pure Python"
8+
DEFAULT_TITLE = "The platform to build and scale enterprise apps"
9+
DEFAULT_DESCRIPTION = "Connect to all your company data and systems to build secure internal apps with AI. Deployed on prem with built-in governance and production-grade reliability, so technical and nontechnical teams can ship together."
910

1011

1112
def mainpage(
1213
path: str,
1314
title: str = DEFAULT_TITLE,
14-
description: str | None = None,
15+
description: str | None = DEFAULT_DESCRIPTION,
1516
image: str | None = None,
1617
meta: list[dict[str, str]] = meta_tags,
1718
props=None,

pcweb/templates/webpage.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,14 @@
55

66
from pcweb.route import Route
77

8-
DEFAULT_TITLE = "Web Apps in Pure Python"
8+
DEFAULT_TITLE = "The platform to build and scale enterprise apps"
9+
DEFAULT_DESCRIPTION = "Connect to all your company data and systems to build secure internal apps with AI. Deployed on prem with built-in governance and production-grade reliability, so technical and nontechnical teams can ship together."
910

1011

1112
def webpage(
1213
path: str,
1314
title: str = DEFAULT_TITLE,
14-
description: str | None = None,
15+
description: str | None = DEFAULT_DESCRIPTION,
1516
image: str | None = None,
1617
meta: list[dict[str, str]] | None = None,
1718
props=None,

0 commit comments

Comments
 (0)