|
2 | 2 |
|
3 | 3 | from pcweb.constants import REFLEX_DOMAIN, REFLEX_DOMAIN_URL, TWITTER_CREATOR |
4 | 4 |
|
| 5 | +ONE_LINE_DESCRIPTION = "The complete platform to build and scale enterprise apps - all in Python." |
| 6 | + |
5 | 7 | meta_tags = [ |
6 | 8 | # HTML Meta Tags |
7 | 9 | {"name": "application-name", "content": "Reflex"}, |
|
11 | 13 | }, |
12 | 14 | { |
13 | 15 | "name": "description", |
14 | | - "content": "The open-source framework to build and deploy web apps using Python.", |
| 16 | + "content": ONE_LINE_DESCRIPTION, |
15 | 17 | }, |
16 | 18 | # Facebook Meta Tags |
17 | 19 | {"property": "og:url", "content": REFLEX_DOMAIN_URL}, |
18 | 20 | {"property": "og:type", "content": "website"}, |
19 | 21 | {"property": "og:title", "content": "Reflex · Web apps in Pure Python"}, |
20 | 22 | { |
21 | 23 | "property": "og:description", |
22 | | - "content": "The open-source framework to build and deploy web apps using Python.", |
| 24 | + "content": ONE_LINE_DESCRIPTION, |
23 | 25 | }, |
24 | 26 | {"property": "og:image", "content": "/previews/index_preview.webp"}, |
25 | 27 | # Twitter Meta Tags |
|
29 | 31 | {"name": "twitter:title", "content": "Reflex · Web apps in Pure Python"}, |
30 | 32 | { |
31 | 33 | "name": "twitter:description", |
32 | | - "content": "The open-source framework to build and deploy web apps using Python.", |
| 34 | + "content": ONE_LINE_DESCRIPTION, |
33 | 35 | }, |
34 | 36 | {"name": "twitter:image", "content": "/previews/index_preview.webp"}, |
35 | 37 | {"name": "twitter:creator", "content": TWITTER_CREATOR}, |
|
44 | 46 | }, |
45 | 47 | { |
46 | 48 | "name": "description", |
47 | | - "content": "The open-source framework to build and deploy web apps using Python.", |
| 49 | + "content": ONE_LINE_DESCRIPTION, |
48 | 50 | }, |
49 | 51 | # Facebook Meta Tags |
50 | 52 | {"property": "og:url", "content": REFLEX_DOMAIN_URL}, |
51 | 53 | {"property": "og:type", "content": "website"}, |
52 | 54 | {"property": "og:title", "content": "Reflex · Web apps in Pure Python"}, |
53 | 55 | { |
54 | 56 | "property": "og:description", |
55 | | - "content": "The open-source framework to build and deploy web apps using Python.", |
| 57 | + "content": ONE_LINE_DESCRIPTION, |
56 | 58 | }, |
57 | 59 | {"property": "og:image", "content": "/previews/hosting_preview.webp"}, |
58 | 60 | # Twitter Meta Tags |
|
62 | 64 | {"name": "twitter:title", "content": "Reflex · Web apps in Pure Python"}, |
63 | 65 | { |
64 | 66 | "name": "twitter:description", |
65 | | - "content": "The open-source framework to build and deploy web apps using Python.", |
| 67 | + "content": ONE_LINE_DESCRIPTION, |
66 | 68 | }, |
67 | 69 | {"name": "twitter:image", "content": "/previews/hosting_preview.webp"}, |
68 | 70 | {"name": "twitter:creator", "content": TWITTER_CREATOR}, |
|
0 commit comments