Skip to content

Commit

Permalink
apply structural changes
Browse files Browse the repository at this point in the history
* nest examples under single entry
* start adjusting color scheme to tailwind colors
* add additional resources under "more"
  • Loading branch information
divideby0 committed Nov 18, 2023
1 parent 22bf99f commit e38f01c
Show file tree
Hide file tree
Showing 27 changed files with 45 additions and 24 deletions.
4 changes: 0 additions & 4 deletions docs/components/_category_.json

This file was deleted.

4 changes: 0 additions & 4 deletions docs/example-airbnb/_category_.json

This file was deleted.

4 changes: 0 additions & 4 deletions docs/example-foosoft/_category_.json

This file was deleted.

4 changes: 4 additions & 0 deletions docs/examples/_category_.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"label": "Examples",
"position": 3
}
4 changes: 4 additions & 0 deletions docs/examples/airbnb/_category_.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"label": "Airbnb",
"position": 1
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 4 additions & 0 deletions docs/examples/foosoft/_category_.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"label": "Foosoft",
"position": 2
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 4 additions & 0 deletions docs/structure/_category_.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"label": "The Structure",
"position": 2
}
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ How will you create demand to drive them into the channel you have chosen, e.g.
advertising, public relations, retail store promotions, PPC, spam, word of
mouth, seminars, telemarketing, partners?

## Document how your customers hear about new companies and products:
## How Customers Hear About You

1. Do they go to trade shows?
1. What books/magazines/websites do they read or visit?
Expand Down
File renamed without changes.
File renamed without changes.
21 changes: 14 additions & 7 deletions docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,19 +69,19 @@ module.exports = {
},
{
type: "doc",
docId: "components/product",
docId: "structure/product",
position: "left",
label: "Components",
label: "The Structure",
},
{
type: "doc",
docId: "example-airbnb/introduction",
docId: "examples/airbnb/introduction",
position: "left",
label: "Airbnb Example",
},
{
type: "doc",
docId: "example-foosoft/introduction",
docId: "examples/foosoft/introduction",
position: "left",
label: "Foosoft Example",
},
Expand All @@ -108,13 +108,20 @@ module.exports = {
},
],
},

{
title: "More",
items: [
{
label: "GitHub",
href: "https://github.com/spantree/hypotheses-briefs",
label: "The Four Steps to the Ephiphany",
href: "https://www.amazon.com/Four-Steps-Epiphany-Steve-Blank/dp/0989200507",
},
{
label: "Steve Blank",
href: "https://steveblank.com/",
},
{
label: "Google Design Sprints",
href: "http://www.gv.com/sprint/",
},
],
},
Expand Down
8 changes: 4 additions & 4 deletions src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

/* You can override the default Infima variables here. */
:root {
--ifm-color-primary: #2e8555;
--ifm-color-primary-dark: #29784c;
--ifm-color-primary: #1e293b;
--ifm-color-primary-dark: #4338ca;
--ifm-color-primary-darker: #277148;
--ifm-color-primary-darkest: #205d3b;
--ifm-color-primary-light: #33925d;
Expand All @@ -19,8 +19,8 @@

/* For readability concerns, you should choose a lighter palette in dark mode. */
[data-theme="dark"] {
--ifm-color-primary: #25c2a0;
--ifm-color-primary-dark: #21af90;
--ifm-color-primary: #f1f5f9;
--ifm-color-primary-dark: #818cf8;
--ifm-color-primary-darker: #1fa588;
--ifm-color-primary-darkest: #1a8870;
--ifm-color-primary-light: #29d5b0;
Expand Down
10 changes: 10 additions & 0 deletions src/pages/index.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@
text-align: center;
position: relative;
overflow: hidden;
display: flex;
flex-direction: column;
justify-content: center;
}

.heroBanner .container {
flex-grow: 1;
display: flex;
flex-direction: column;
justify-content: center;
}

@media screen and (max-width: 996px) {
Expand Down

0 comments on commit e38f01c

Please sign in to comment.