From 1c978aa8d19cae350a861c0ab25b8522f6f562e7 Mon Sep 17 00:00:00 2001 From: arbyys Date: Thu, 26 Sep 2024 09:47:21 +0200 Subject: [PATCH] docs: Update outdated Effect URL --- apps/web/pages/docs/quickstart.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/pages/docs/quickstart.mdx b/apps/web/pages/docs/quickstart.mdx index c123ce877..49e9ba519 100644 --- a/apps/web/pages/docs/quickstart.mdx +++ b/apps/web/pages/docs/quickstart.mdx @@ -14,7 +14,7 @@ First, we define a database schema: tables, columns, and their types. Evolu uses [Schema](https://github.com/Effect-TS/effect/blob/main/packages/schema) for data modeling. Instead of plain JavaScript types like String or Number, we - recommend [branded types](https://www.effect.website/docs/style/brands). With + recommend [branded types](https://effect.website/docs/guides/style/branded-types). With branded types, we can define and enforce domain rules like `NonEmptyString1000` or `PositiveInt`.