Flavor profile spectrums (from noillyprat.com):
-
sweet to dry
-
winey to bitter
-
round to sour
-
floral to spicy
-
add a skip question option to Help Me Decide
Future possible homepage links:
- tags
- favorites
- in my bar
- help me decide
- hand-selected featured link (new article, drink, etc.)
• tenBottleCandidate: true → "Can this drink potentially be made with a ten-bottle bar?" • ten-bottle-bar tag → "This drink definitely works with the basic ten-bottle setup"
tenBottleCandidate: true flag • Purpose: Controls which drinks appear on the ten-bottle-bar page • Used in: GraphQL query in src/pages/tags/ten-bottle-bar.js (line 34): filter: { frontmatter: { tenBottleCandidate: { eq: true } } } • Function: Initial filtering to determine the candidate set of drinks for the ten-bottle bar page
ten-bottle-bar tag
• Purpose: Used for runtime filtering logic within the TenBottleBar component
• Used in: src/components/TenBottleBar.js (line 61): if (drink.tags.includes('ten-bottle-bar'))
• Function: Fine-grained filtering based on user selections (vermouth type, tenth bottle choice, etc.)