diff --git a/website/docs/docs/build/metricflow-time-spine.md b/website/docs/docs/build/metricflow-time-spine.md
index 9730313d60d..18acf451a12 100644
--- a/website/docs/docs/build/metricflow-time-spine.md
+++ b/website/docs/docs/build/metricflow-time-spine.md
@@ -115,10 +115,13 @@ and date_hour < dateadd(day, 30, current_timestamp())
```
+
+Use this model if you're using BigQuery. BigQuery supports `DATE()` instead of `TO_DATE()`:
+
+
```sql
--- BigQuery supports DATE() instead of TO_DATE(). Use this model if you're using BigQuery
{{config(materialized='table')}}
with days as (
{{dbt_utils.date_spine(
@@ -140,13 +143,15 @@ from final
where date_day > dateadd(year, -4, current_timestamp())
and date_hour < dateadd(day, 30, current_timestamp())
```
-
+
-
+
+
+
```sql
--- BigQuery supports DATE() instead of TO_DATE(). Use this model if you're using BigQuery
+
{{config(materialized='table')}}
with days as (
{{dbt.date_spine(
@@ -168,7 +173,9 @@ from final
where date_day > dateadd(year, -4, current_timestamp())
and date_hour < dateadd(day, 30, current_timestamp())
```
+
+
## Hourly time spine
diff --git a/website/docs/docs/collaborate/govern/about-model-governance.md b/website/docs/docs/collaborate/govern/about-model-governance.md
index a845e941e54..195b1d03caa 100644
--- a/website/docs/docs/collaborate/govern/about-model-governance.md
+++ b/website/docs/docs/collaborate/govern/about-model-governance.md
@@ -11,3 +11,5 @@ pagination_prev: null
[**Model contracts**](model-contracts): Guarantee the shape of a model while it is building to avoid surprises or breaking changes for downstream queries. Explicitly define column names, data types, and constraints (as supported by your data platform).
[**Model versions**](model-versions): When a breaking change is unavoidable, provide a smoother upgrade pathway by creating a new version of the model. These model versions share a common reference name and can reuse properties & configurations.
+
+[**Project dependencies**](/docs/collaborate/govern/project-dependencies): Use cross project dependencies to reference public models across dbt projects using the [two-argument ref](/reference/dbt-jinja-functions/ref#ref-project-specific-models), which includes the project name.