From 7c33db430d67be7b906a874f7d8fa6d22d6aaa1b Mon Sep 17 00:00:00 2001 From: mkosir Date: Thu, 9 Jan 2025 15:11:35 +0100 Subject: [PATCH] update docusaurus --- website/src/pages/index.mdx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/website/src/pages/index.mdx b/website/src/pages/index.mdx index a46871b..5f31b15 100644 --- a/website/src/pages/index.mdx +++ b/website/src/pages/index.mdx @@ -870,8 +870,12 @@ While it's often hard to find the best name, aim to optimize code for consistenc - **Constants** - Capitalized - `PRODUCT_ID` + Capitalized + + ```ts + const FEATURED_PRODUCT_ID = '8f47d2a1-b13e-4d5a-a7d8-6ef1234'; + ``` + - **Object constants** Singular, capitalized with const assertion.