forked from theHandsomestNerd/mixed-feelings-by-t
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1a36296
commit 7f5248f
Showing
59 changed files
with
3,685 additions
and
392 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
<link href="https://fonts.googleapis.com/css2?family=Prompt:wght@700&family=Inter:wght@400;500;700&family=Orbitron:wght@400;500&family=Oswald:wght@400;500&family=Raleway:wght@400;500&display=swap" rel="stylesheet"/> | ||
<link href="https://fonts.googleapis.com/css2??family=Covered+By+Your+Grace&family=Prompt:wght@700&family=Inter:wght@400;500;700&family=Orbitron:wght@400;500&family=Oswald:wght@400;500&family=Raleway:wght@400;500&display=swap" | ||
rel="stylesheet"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
export default { | ||
name: 'Cocktail', | ||
title: 'Cocktail', | ||
type: 'document', | ||
fields: [ | ||
{ | ||
name: 'name', | ||
title: 'Name', | ||
type: 'string', | ||
}, | ||
{ | ||
name: 'title', | ||
title: 'Title', | ||
type: 'string', | ||
}, | ||
{ | ||
name: 'slug', | ||
title: 'Slug', | ||
type: 'slug', | ||
options: { | ||
source: 'title', | ||
maxLength: 96, | ||
}, | ||
}, | ||
{ | ||
name: 'description', | ||
title: 'Description', | ||
type: 'string', | ||
}, | ||
{ | ||
name: 'glassPrep', | ||
title: 'Glass Prep', | ||
type: 'array', | ||
of: [{type: "string"}], | ||
description: "Glass Prep", | ||
options: { | ||
list: [ | ||
{title: "Ice", value: "ICE"}, | ||
{title: "Strawberry Ice Cubes", value: "STRAWBERRY_ICE"}, | ||
{title: "Chilled", value: "CHILLED"}, | ||
{title: "Red Sugar rim", value: "RED_SUGAR_RIM"}, | ||
{title: "Green Sugar rim", value: "GREEN_SUGAR_RIM"}, | ||
{title: "Chili Salt rim", value: "CHILI_SALT_RIM"}, | ||
{title: "Sugar rim", value: "SUGAR_RIM"}, | ||
{title: "Salt rim", value: "SALT_RIM"}, | ||
{title: "Caramel Stripes", value: "CARAMEL_STRIPE"}, | ||
{title: "Chocolate Stripes", value: "CHOC_STRIPE"}, | ||
] | ||
} | ||
}, | ||
{ | ||
name: 'glass', | ||
title: 'Glassware', | ||
type: 'reference', | ||
to: [{type: 'Glass',}] | ||
|
||
}, | ||
{ | ||
name: 'imageSrc', | ||
title: 'Image', | ||
type: 'image', | ||
options: { | ||
hotspot: true, | ||
}, | ||
}, | ||
{ | ||
name: 'garnish', | ||
title: 'Garnish', | ||
type: 'array', | ||
of: [{type: "reference", to: [{type: "Garnish"}]}], | ||
}, | ||
{ | ||
name: 'mixingGlass', | ||
title: 'Mixing Glass', | ||
type: "array", | ||
of: [{type: 'MixingGlass',}, {type: "reference", to: [{type: 'Garnish',}]}] | ||
}, | ||
{ | ||
name: 'instructions', | ||
title: 'Instructions', | ||
type: 'array', | ||
of: [{type: "reference", to: [{type: "Instruction"}]}] | ||
}, | ||
{ | ||
name: 'drinkCount', | ||
title: 'Drink Count', | ||
type: 'number', | ||
}, | ||
{ | ||
name: 'isOnMenu', | ||
title: 'Is this on the Menu?', | ||
type: 'boolean', | ||
}, | ||
{ | ||
name: 'isDisabled', | ||
title: 'Is this disabled for user to view?', | ||
type: 'boolean', | ||
}, | ||
], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
export default { | ||
name: 'FlashCardSection', | ||
title: 'Flash Card Section', | ||
type: 'document', | ||
fields: [ | ||
{ | ||
name: 'name', | ||
title: 'Name', | ||
type: 'string', | ||
}, | ||
{ | ||
name: 'title', | ||
title: 'Title', | ||
type: 'string', | ||
}, | ||
{ | ||
name: 'isFlashCard', | ||
title: 'Is the format Flashcard', | ||
type: 'boolean', | ||
}, | ||
{ | ||
name: 'slug', | ||
title: 'Slug', | ||
type: 'slug', | ||
options: { | ||
source: 'title', | ||
maxLength: 96, | ||
}, | ||
}, | ||
], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
export default { | ||
name: 'Garnish', | ||
title: 'Garnish', | ||
type: 'document', | ||
fields: [ | ||
{ | ||
name: 'name', | ||
title: 'Name', | ||
type: 'string', | ||
}, | ||
{ | ||
name: 'title', | ||
title: 'Title', | ||
type: 'string', | ||
}, | ||
{ | ||
name: 'slug', | ||
title: 'Slug', | ||
type: 'slug', | ||
options: { | ||
source: 'title', | ||
maxLength: 96, | ||
}, | ||
}, | ||
{ | ||
name: 'imageSrc', | ||
title: 'Image', | ||
type: 'image', | ||
options: { | ||
hotspot: true, | ||
}, | ||
}, | ||
], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
export default { | ||
name: 'Glass', | ||
title: 'Glass', | ||
type: 'document', | ||
fields: [ | ||
{ | ||
name: 'name', | ||
title: 'Name', | ||
type: 'string', | ||
}, | ||
{ | ||
name: 'title', | ||
title: 'Title', | ||
type: 'string', | ||
}, | ||
{ | ||
name: 'slug', | ||
title: 'Slug', | ||
type: 'slug', | ||
options: { | ||
source: 'title', | ||
maxLength: 96, | ||
}, | ||
}, | ||
{ | ||
name: 'sizeOz', | ||
title: 'Size(Ounces)', | ||
type: 'number', | ||
}, | ||
{ | ||
name: 'rim', | ||
title: 'Rim', | ||
type: 'string', | ||
}, | ||
{ | ||
name: 'isIced', | ||
title: 'Ice?', | ||
type: 'boolean', | ||
}, | ||
{ | ||
name: 'imageSrc', | ||
title: 'Image', | ||
type: 'image', | ||
options: { | ||
hotspot: true, | ||
}, | ||
}, | ||
], | ||
} |
Oops, something went wrong.