From b66bea8f1d88e0e040b9979b234dd3b7e7fb96be Mon Sep 17 00:00:00 2001
From: Rajandeep
Date: Tue, 26 Nov 2024 10:14:52 -0800
Subject: [PATCH 17/28] Developer Site Designs Partial - Card
---
web/site/app/locales/en-CA.ts | 11 ++--
web/site/app/pages/index.vue | 95 +++++++++++++++++++++++++++++++++--
2 files changed, 98 insertions(+), 8 deletions(-)
diff --git a/web/site/app/locales/en-CA.ts b/web/site/app/locales/en-CA.ts
index a27c8c33..e78cc1dc 100644
--- a/web/site/app/locales/en-CA.ts
+++ b/web/site/app/locales/en-CA.ts
@@ -4,10 +4,10 @@ export default {
goHome: 'Go Home',
goBack: 'Go Back',
downloadSpec: 'Download the specification',
- allProducts: 'View all products',
+ allProducts: 'View Products',
products: 'Products',
dashboard: 'Dashboard',
- sbcConnect: 'Service BC Connect',
+ sbcConnect: 'ServiceBC Connect',
apiDoc: 'API documentation',
createKey: 'Create Key',
revoke: 'Revoke',
@@ -26,8 +26,8 @@ export default {
},
home: {
title: 'Home',
- h1: 'BC Registries API Gateway',
- intro: 'Welcome to the BC Registries API Gateway! Access API information for all BC Registries services here.'
+ h1: 'Service BC Connect Developer Site',
+ intro: 'Welcome to the Service BC Connect Developer Site! Access API information for all BC Registries services here.'
},
products: {
title: 'All Products',
@@ -74,6 +74,9 @@ export default {
// aria-label
label: 'Select a Language, current language: English'
},
+ SbcMainCard: {
+ learnMore: 'Learn More'
+ },
SbcProductCard: {
goTo: 'Go to'
},
diff --git a/web/site/app/pages/index.vue b/web/site/app/pages/index.vue
index 77e55b04..a1fed963 100644
--- a/web/site/app/pages/index.vue
+++ b/web/site/app/pages/index.vue
@@ -1,12 +1,12 @@
-
+
{{ $t('page.home.h1') }}
@@ -14,14 +14,101 @@ useHead({
{{ $t('page.home.intro') }}
-
+ /> -->
+
+
+
+
+ {{ $t('btn.getStarted') }}
+
+
+
+
+
+
+ Start to set up Service BC Connect APIs in your applications.
+
+
+
+
+
+
+
+
+
+
+ {{ $t('btn.allProducts') }}
+
+
+
+
+
+
+ Learn about and try Service BC Connect products
+
+
+
+
+
From 7d8e8cc8253693ce55612806a61f75d662137a77 Mon Sep 17 00:00:00 2001
From: Rajandeep
Date: Tue, 26 Nov 2024 10:19:31 -0800
Subject: [PATCH 18/28] icon remove
---
web/site/app/pages/index.vue | 1 -
1 file changed, 1 deletion(-)
diff --git a/web/site/app/pages/index.vue b/web/site/app/pages/index.vue
index a1fed963..f115c8bc 100644
--- a/web/site/app/pages/index.vue
+++ b/web/site/app/pages/index.vue
@@ -102,7 +102,6 @@ useHead({
{{ $t('SbcMainCard.learnMore') }}
-
From b015adf998ad908ec1f297a817c6c5df485259c5 Mon Sep 17 00:00:00 2001
From: Rajandeep
Date: Thu, 28 Nov 2024 16:47:00 -0800
Subject: [PATCH 19/28] footer design
---
web/site/app/app.vue | 2 +-
web/site/app/components/Sbc/Footer.vue | 31 +++++++++++++++++++++-----
web/site/app/locales/en-CA.ts | 2 ++
3 files changed, 29 insertions(+), 6 deletions(-)
diff --git a/web/site/app/app.vue b/web/site/app/app.vue
index 674a169c..192a03b1 100644
--- a/web/site/app/app.vue
+++ b/web/site/app/app.vue
@@ -86,6 +86,6 @@ provide('footerHeight', footerHeight)
-
+
diff --git a/web/site/app/components/Sbc/Footer.vue b/web/site/app/components/Sbc/Footer.vue
index 2ee3c55d..74a00304 100644
--- a/web/site/app/components/Sbc/Footer.vue
+++ b/web/site/app/components/Sbc/Footer.vue
@@ -9,11 +9,21 @@ const links = [
to: 'https://www2.gov.bc.ca/gov/content/home/disclaimer',
target: '_blank'
},
+ {
+ label: 'SbcFooter.releaseNotes',
+ to: 'https://www.release-notes.bcregistry.gov.bc.ca',
+ target: '_blank'
+ },
{
label: 'SbcFooter.privacy',
to: 'https://www2.gov.bc.ca/gov/content/home/privacy',
target: '_blank'
},
+ {
+ label: 'Hours of Availability',
+ to: 'https://www2.gov.bc.ca/gov/content?id=C41D8179671441B2BAA3BDDD3D89C9A9',
+ target: '_blank'
+ },
{
label: 'SbcFooter.ally',
to: 'https://www2.gov.bc.ca/gov/content/home/accessibility',
@@ -30,21 +40,32 @@ const links = [
-
+
Learn about and try Service BC Connect products
From 90679a483bdf3f7601fb2983f4aaaab64f665cb3 Mon Sep 17 00:00:00 2001
From: Rajandeep