From e0c62b053eb580300f7696d8741f3c6ab9ca0ecb Mon Sep 17 00:00:00 2001 From: Emma Whamond Date: Fri, 30 Aug 2024 12:04:00 -0700 Subject: [PATCH] Update SmartLogic Landing Page (#322) * Added new sections and styling for a new landing page * Added BCHD modal * Added case study modals for World Central Kitchen and Challenge.gov * Added new file with script for case study modals * Fixed button and removed javascript from case study modal HTML files * Extracted css from main into separate files for new components in landing page * Fixed size of logos in the projects section * Changed default modal visibility to 'none' and included modals in the index file * Fixed vertical text alignment in modal button * Cleaned modal styling code * Fixed pictures overlay on World Central Kitchen modal * Changed the code to make the modals responsive * Update index with includes for new partials * Update hero section of landing page * Add statement section to landing page * Add "at a glance" section and get started modal to landing page * Update features section of landing page * Update case study section of the landing page and add modals * Add pillars section to landing page * Update testimonials/awards section to landing page * Add black SL svg logo * Make footer slightly more responsive on mobile * Update header to make the hamburger always visible * Remove old landing page styling * Revert index page to live site * Add overview index * Extract Get Started modal * Add overview default layout * Fix modal descriptions and update image paths * Revert footer for live site * Revert color of logo for live site * Add footer for landing page overview * Revert hero changes and add overview hero * Revert css changes and add overview landing page css styling * Add overview hero css file * Move Get Started modal js to modal.js * Move pillar js * Remove redundant call to modal.js and main.js * JS cleanup --------- Co-authored-by: Micaela Cunha Co-authored-by: Dan Ivovich --- _includes/at_a_glance.html | 43 ++++ _includes/bchd_modal.html | 35 +++ _includes/case_studies.html | 43 ++++ _includes/challenge_modal.html | 43 ++++ _includes/features.html | 9 + _includes/footer-common.html | 2 +- _includes/get_started_modal.html | 24 ++ _includes/overview-footer.html | 62 +++++ _includes/overview_hero.html | 23 ++ _includes/pillars.html | 50 ++++ _includes/projects.html | 16 ++ _includes/statement.html | 7 + _includes/testimonials-and-awards.html | 13 + _includes/wck_modal.html | 45 ++++ _layouts/overview_default.html | 44 ++++ _sass/components/at_a_glance.scss | 241 ++++++++++++++++++ _sass/components/case_studies.scss | 154 +++++++++++ _sass/components/features.scss | 9 + _sass/components/footer.scss | 3 + _sass/components/header.scss | 42 +++ _sass/components/modal.scss | 161 ++++++++++++ _sass/components/overview_hero.scss | 140 ++++++++++ _sass/components/pillars.scss | 100 ++++++++ _sass/components/projects.scss | 7 + _sass/components/statement.scss | 31 +++ _sass/components/testimonials.scss | 45 ++++ _sass/layout/setups.scss | 6 + _sass/pages/main.scss | 24 +- css/app.scss | 12 + .../bchd/charmcare-home-laptop.png | Bin 0 -> 97395 bytes images/case-studies/wck-direct/wck-laptop.png | Bin 0 -> 179648 bytes .../wck-direct/wck-smartphone.png | Bin 0 -> 89079 bytes images/contents/ClutchBadge.png | Bin 0 -> 9983 bytes images/contents/challenge-background-img.jpeg | Bin 0 -> 1857943 bytes images/contents/charmcare-background-img.jpeg | Bin 0 -> 602747 bytes images/contents/full-lifecycle-logo.png | Bin 0 -> 38393 bytes images/contents/header-image.png | Bin 0 -> 226296 bytes images/contents/rd-mvp-logo.png | Bin 0 -> 30954 bytes images/contents/replatforming-logo.png | Bin 0 -> 30912 bytes images/contents/team-augmentation.png | Bin 0 -> 31637 bytes .../world-central-kitchen-background-img.jpeg | Bin 0 -> 887478 bytes .../logos-featured-clients/challenge-gov.png | Bin 0 -> 15123 bytes .../laureate-universities.png | Bin 0 -> 5706 bytes images/logo/logos-featured-clients/stan.png | Bin 0 -> 11070 bytes images/logo/logos-tech/JS.png | Bin 0 -> 11139 bytes images/logo/logos-tech/elixir.png | Bin 0 -> 23673 bytes images/logo/logos-tech/flutter.png | Bin 0 -> 73152 bytes images/logo/logos-tech/rails.png | Bin 0 -> 40899 bytes index.html | 2 +- javascript/main.js | 25 +- javascript/modal.js | 101 ++++++++ overview/index.html | 23 ++ 52 files changed, 1570 insertions(+), 15 deletions(-) create mode 100644 _includes/at_a_glance.html create mode 100644 _includes/bchd_modal.html create mode 100644 _includes/case_studies.html create mode 100644 _includes/challenge_modal.html create mode 100644 _includes/features.html create mode 100644 _includes/get_started_modal.html create mode 100644 _includes/overview-footer.html create mode 100644 _includes/overview_hero.html create mode 100644 _includes/pillars.html create mode 100644 _includes/projects.html create mode 100644 _includes/statement.html create mode 100644 _includes/testimonials-and-awards.html create mode 100644 _includes/wck_modal.html create mode 100644 _layouts/overview_default.html create mode 100644 _sass/components/at_a_glance.scss create mode 100644 _sass/components/case_studies.scss create mode 100644 _sass/components/features.scss create mode 100644 _sass/components/modal.scss create mode 100644 _sass/components/overview_hero.scss create mode 100644 _sass/components/pillars.scss create mode 100644 _sass/components/projects.scss create mode 100644 _sass/components/statement.scss create mode 100644 _sass/components/testimonials.scss create mode 100644 images/case-studies/bchd/charmcare-home-laptop.png create mode 100644 images/case-studies/wck-direct/wck-laptop.png create mode 100644 images/case-studies/wck-direct/wck-smartphone.png create mode 100644 images/contents/ClutchBadge.png create mode 100644 images/contents/challenge-background-img.jpeg create mode 100644 images/contents/charmcare-background-img.jpeg create mode 100644 images/contents/full-lifecycle-logo.png create mode 100644 images/contents/header-image.png create mode 100644 images/contents/rd-mvp-logo.png create mode 100644 images/contents/replatforming-logo.png create mode 100644 images/contents/team-augmentation.png create mode 100644 images/contents/world-central-kitchen-background-img.jpeg create mode 100644 images/logo/logos-featured-clients/challenge-gov.png create mode 100644 images/logo/logos-featured-clients/laureate-universities.png create mode 100644 images/logo/logos-featured-clients/stan.png create mode 100644 images/logo/logos-tech/JS.png create mode 100644 images/logo/logos-tech/elixir.png create mode 100644 images/logo/logos-tech/flutter.png create mode 100644 images/logo/logos-tech/rails.png create mode 100644 javascript/modal.js create mode 100644 overview/index.html diff --git a/_includes/at_a_glance.html b/_includes/at_a_glance.html new file mode 100644 index 00000000..21b398b9 --- /dev/null +++ b/_includes/at_a_glance.html @@ -0,0 +1,43 @@ +
+

SmartLogic At-A-Glance

+
+
+

YEARS IN BUSINESS

+

20+

+
+
+

PROJECTS

+

200+

+
+
+

RESOURCE BENCH

+

25+

+
+
+

LOCATION

+

USA

+
+
+

Engagements Include

+
+ + + + +
+ +
diff --git a/_includes/bchd_modal.html b/_includes/bchd_modal.html new file mode 100644 index 00000000..1feb40a0 --- /dev/null +++ b/_includes/bchd_modal.html @@ -0,0 +1,35 @@ + + + + + diff --git a/_includes/case_studies.html b/_includes/case_studies.html new file mode 100644 index 00000000..34aab4cb --- /dev/null +++ b/_includes/case_studies.html @@ -0,0 +1,43 @@ +
+
+
+
+
+

World Central Kitchen

+
SmartLogic built a scalable platform for World Central Kitchen's text-to-order food relief program
+ +
+ +
+
+

Challenge.Gov

+
SmartLogic built a new self-service portal for the Challenge.Gov program
+ +
+ +
+
+

CHARMcare

+
SmartLogic improved search and usability for Baltimore City Health Department's CHARMcare
+ +
+
+
+
+ + +
+ {% include wck_modal.html %} +
+
+ {% include challenge_modal.html %} +
+
+ {% include bchd_modal.html %} +
diff --git a/_includes/challenge_modal.html b/_includes/challenge_modal.html new file mode 100644 index 00000000..e906b0ca --- /dev/null +++ b/_includes/challenge_modal.html @@ -0,0 +1,43 @@ + + + + + + + diff --git a/_includes/features.html b/_includes/features.html new file mode 100644 index 00000000..07f955e6 --- /dev/null +++ b/_includes/features.html @@ -0,0 +1,9 @@ +
+

We are Specialists in

+
+ + + + +
+
diff --git a/_includes/footer-common.html b/_includes/footer-common.html index 25a1e548..882606fd 100644 --- a/_includes/footer-common.html +++ b/_includes/footer-common.html @@ -2,7 +2,7 @@