From 2fb10d087d700cadea3d60370485f6e1038e0c3e Mon Sep 17 00:00:00 2001 From: Mimi Flynn <414934+mimiflynn@users.noreply.github.com> Date: Mon, 25 Sep 2023 11:41:36 -0400 Subject: [PATCH 1/3] Deploy (#1) * OSS Marketing Website (#1) * initial commit of website template * featured projects * card style fixes * content placeholder examples * doc menu order * sample content * front page content * button style in hero * table styles and spacing * content and navigation updates partner logos * lf logo update * rename documentation to contribute * code of conduct * Documentation to Contribute * index content order and hide news link * remove redundant p tags * footer hr and about us link * partner logos with space * project logos * update morphir language and set cards to open in new window * security and adjust sidebar * security and fix toc * fix toc in index * image size to number * update packages and debug ssr * fix build issue * refactor to use dynamic slugs for paths * remove unused query param * homepage mdx components * Contribute content reorg * more featured projects remove quote * remove ms_gloriola * Project lifecycle * better partner logos * legal notice in footer * update copy * move morphir folder to static assets * contribution focused hero copy * semicolon and logo scale adjustment * Bump graphql from 16.8.0 to 16.8.1 in /site (#2) Bumps [graphql](https://github.com/graphql/graphql-js) from 16.8.0 to 16.8.1. - [Release notes](https://github.com/graphql/graphql-js/releases) - [Commits](https://github.com/graphql/graphql-js/compare/v16.8.0...v16.8.1) --- updated-dependencies: - dependency-name: graphql dependency-type: indirect ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * update build command * update ignore --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .gitignore | 4 +++- site/package.json | 3 ++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 28f1ba7..f4e2971 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,4 @@ +npm-debug.log* node_modules -.DS_Store \ No newline at end of file +.DS_Store +docs/ \ No newline at end of file diff --git a/site/package.json b/site/package.json index 2ad63d2..87da840 100644 --- a/site/package.json +++ b/site/package.json @@ -38,8 +38,9 @@ "scripts": { "develop": "gatsby develop -H 0.0.0.0", "start": "gatsby develop -H 0.0.0.0", - "build": "gatsby build", + "build": "gatsby clean && gatsby build && npm run pub", "serve": "gatsby serve", + "pub": "rm -rf ../docs && mv public ../docs", "clean": "gatsby clean" }, "devDependencies": { From 51ab2d5e5e8c13430decbc6455936ef3481d98a1 Mon Sep 17 00:00:00 2001 From: Mimi Flynn <414934+mimiflynn@users.noreply.github.com> Date: Mon, 25 Sep 2023 13:55:15 -0400 Subject: [PATCH 2/3] mobile adjustments --- site/src/styles/card.css | 5 +---- site/src/styles/hero.css | 12 ++++++++++++ 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/site/src/styles/card.css b/site/src/styles/card.css index a797b01..681616c 100644 --- a/site/src/styles/card.css +++ b/site/src/styles/card.css @@ -164,9 +164,6 @@ @media (max-width: 767px) { .card-collection { - flex: none; - } - .card-collection .card { - flex-basis: 100%; + display: block; } } diff --git a/site/src/styles/hero.css b/site/src/styles/hero.css index 14cb960..e22ab74 100644 --- a/site/src/styles/hero.css +++ b/site/src/styles/hero.css @@ -41,3 +41,15 @@ .news-main .hero { background-image: url('../../static/images/02393_2022Q2ArtRev_GettyImages-184873183_2285px.jpg'); } + +@media (max-width: 767px) { + .hero { + height: 400px; + } + .hero article { + width: auto; + } + .home-main .hero { + background-position: 30% 75%; + } +} From ce51fb8e2a7db81626e8728bf53bb1005f94debe Mon Sep 17 00:00:00 2001 From: Mimi Date: Wed, 11 Oct 2023 11:55:19 -0400 Subject: [PATCH 3/3] include CNAME in build --- CNAME => site/static/CNAME | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename CNAME => site/static/CNAME (100%) diff --git a/CNAME b/site/static/CNAME similarity index 100% rename from CNAME rename to site/static/CNAME