Skip to content

Commit f20a41e

Browse files
Merge branch 'dev' into fix/saas-card-tags-whitespace
2 parents 499e597 + da4d69a commit f20a41e

54 files changed

Lines changed: 129 additions & 66 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

app/[locale]/10years/page-jsonld.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ import PageJsonLD from "@/components/PageJsonLD"
66

77
import { normalizeUrlForJsonLd } from "@/lib/utils/url"
88

9-
import { BASE_GRAPH_NODES, REFERENCE } from "@/lib/jsonld/constants"
9+
import { BASE_GRAPH_NODES } from "@/lib/jsonld/constants"
10+
import { REFERENCE } from "@/lib/jsonld/references"
1011

1112
export default async function TenYearJsonLD({
1213
locale,

app/[locale]/[...slug]/page-jsonld.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ import PageJsonLD from "@/components/PageJsonLD"
44

55
import { normalizeUrlForJsonLd } from "@/lib/utils/url"
66

7-
import { BASE_GRAPH_NODES, REFERENCE } from "@/lib/jsonld/constants"
7+
import { BASE_GRAPH_NODES } from "@/lib/jsonld/constants"
8+
import { REFERENCE } from "@/lib/jsonld/references"
89
import { resolveAuthorsFromFrontmatter } from "@/lib/jsonld/utils"
910

1011
export default async function SlugJsonLD({

app/[locale]/apps/[application]/page-jsonld.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ import PageJsonLD from "@/components/PageJsonLD"
44

55
import { normalizeUrlForJsonLd, slugify } from "@/lib/utils/url"
66

7-
import { BASE_GRAPH_NODES, REFERENCE } from "@/lib/jsonld/constants"
7+
import { BASE_GRAPH_NODES } from "@/lib/jsonld/constants"
8+
import { REFERENCE } from "@/lib/jsonld/references"
89

910
// Map internal app categories to schema.org enumerated applicationCategory values
1011
// https://schema.org/applicationCategory

app/[locale]/apps/categories/[catetgoryName]/page-jsonld.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ import PageJsonLD from "@/components/PageJsonLD"
66

77
import { normalizeUrlForJsonLd } from "@/lib/utils/url"
88

9-
import { BASE_GRAPH_NODES, REFERENCE } from "@/lib/jsonld/constants"
9+
import { BASE_GRAPH_NODES } from "@/lib/jsonld/constants"
10+
import { REFERENCE } from "@/lib/jsonld/references"
1011

1112
export default async function AppsCategoryJsonLD({
1213
locale,

app/[locale]/apps/page-jsonld.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ import { normalizeUrlForJsonLd } from "@/lib/utils/url"
88

99
import { appsCategories } from "@/data/apps/categories"
1010

11-
import { BASE_GRAPH_NODES, REFERENCE } from "@/lib/jsonld/constants"
11+
import { BASE_GRAPH_NODES } from "@/lib/jsonld/constants"
12+
import { REFERENCE } from "@/lib/jsonld/references"
1213

1314
export default async function AppsJsonLD({
1415
locale,

app/[locale]/assets/page-jsonld.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ import PageJsonLD from "@/components/PageJsonLD"
66

77
import { normalizeUrlForJsonLd } from "@/lib/utils/url"
88

9-
import { BASE_GRAPH_NODES, REFERENCE } from "@/lib/jsonld/constants"
9+
import { BASE_GRAPH_NODES } from "@/lib/jsonld/constants"
10+
import { REFERENCE } from "@/lib/jsonld/references"
1011

1112
export default async function AssetsJsonLD({
1213
locale,

app/[locale]/bug-bounty/page-jsonld.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ import PageJsonLD from "@/components/PageJsonLD"
66

77
import { normalizeUrlForJsonLd } from "@/lib/utils/url"
88

9-
import { BASE_GRAPH_NODES, REFERENCE } from "@/lib/jsonld/constants"
9+
import { BASE_GRAPH_NODES } from "@/lib/jsonld/constants"
1010
import { KNOWN_PERSONS } from "@/lib/jsonld/persons"
11+
import { REFERENCE } from "@/lib/jsonld/references"
1112
import { personReference } from "@/lib/jsonld/utils"
1213

1314
export default async function BugBountyJsonLD({

app/[locale]/collectibles/page-jsonld.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ import { normalizeUrlForJsonLd } from "@/lib/utils/url"
99
import { COLLECTIBLES_BASE_URL } from "./constants"
1010
import type { Badge, Stats } from "./types"
1111

12-
import { BASE_GRAPH_NODES, REFERENCE } from "@/lib/jsonld/constants"
12+
import { BASE_GRAPH_NODES } from "@/lib/jsonld/constants"
13+
import { REFERENCE } from "@/lib/jsonld/references"
1314

1415
export default async function CollectiblesJsonLD({
1516
locale,

app/[locale]/community/events/conferences/page-jsonld.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ import PageJsonLD from "@/components/PageJsonLD"
77
import { getLocaleYear } from "@/lib/utils/date"
88
import { normalizeUrlForJsonLd } from "@/lib/utils/url"
99

10-
import { BASE_GRAPH_NODES, REFERENCE } from "@/lib/jsonld/constants"
10+
import { BASE_GRAPH_NODES } from "@/lib/jsonld/constants"
11+
import { REFERENCE } from "@/lib/jsonld/references"
1112

1213
function eventTypeFor(
1314
event: EventItem

app/[locale]/community/events/meetups/page-jsonld.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ import PageJsonLD from "@/components/PageJsonLD"
77
import { getLocaleYear } from "@/lib/utils/date"
88
import { normalizeUrlForJsonLd } from "@/lib/utils/url"
99

10-
import { BASE_GRAPH_NODES, REFERENCE } from "@/lib/jsonld/constants"
10+
import { BASE_GRAPH_NODES } from "@/lib/jsonld/constants"
11+
import { REFERENCE } from "@/lib/jsonld/references"
1112

1213
function toEventNode(event: EventItem) {
1314
return {

0 commit comments

Comments
 (0)