@umituz/react-native-ai-generation-content 1.22.8 → 1.23.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/domains/scenarios/domain/Scenario.ts +571 -0
- package/src/domains/scenarios/domain/scenario.types.ts +8 -0
- package/src/domains/scenarios/index.ts +15 -0
- package/src/domains/scenarios/infrastructure/ScenariosData.ts +210 -0
- package/src/domains/scenarios/infrastructure/data/action-stealth-scenarios.ts +60 -0
- package/src/domains/scenarios/infrastructure/data/adventure-scenarios.ts +60 -0
- package/src/domains/scenarios/infrastructure/data/affection-scenarios.ts +88 -0
- package/src/domains/scenarios/infrastructure/data/animals-scenarios.ts +24 -0
- package/src/domains/scenarios/infrastructure/data/arabian-nights-scenarios.ts +46 -0
- package/src/domains/scenarios/infrastructure/data/art-studio-scenarios.ts +61 -0
- package/src/domains/scenarios/infrastructure/data/artistic-scenarios.ts +84 -0
- package/src/domains/scenarios/infrastructure/data/bucket-list-scenarios.ts +59 -0
- package/src/domains/scenarios/infrastructure/data/career-scenarios.ts +56 -0
- package/src/domains/scenarios/infrastructure/data/casino-scenarios.ts +47 -0
- package/src/domains/scenarios/infrastructure/data/celebration-scenarios.ts +74 -0
- package/src/domains/scenarios/infrastructure/data/cinematic-scenarios.ts +53 -0
- package/src/domains/scenarios/infrastructure/data/connection-scenarios.ts +103 -0
- package/src/domains/scenarios/infrastructure/data/cozy-plush-scenarios.ts +46 -0
- package/src/domains/scenarios/infrastructure/data/creative-scenarios.ts +24 -0
- package/src/domains/scenarios/infrastructure/data/culinary-scenarios.ts +24 -0
- package/src/domains/scenarios/infrastructure/data/cultural-scenarios.ts +76 -0
- package/src/domains/scenarios/infrastructure/data/daily-essence-scenarios.ts +102 -0
- package/src/domains/scenarios/infrastructure/data/dark-academia-scenarios.ts +47 -0
- package/src/domains/scenarios/infrastructure/data/ecology-scenarios.ts +59 -0
- package/src/domains/scenarios/infrastructure/data/education-scenarios.ts +24 -0
- package/src/domains/scenarios/infrastructure/data/elemental-scenarios.ts +47 -0
- package/src/domains/scenarios/infrastructure/data/elite-scenarios.ts +60 -0
- package/src/domains/scenarios/infrastructure/data/extreme-scenarios.ts +24 -0
- package/src/domains/scenarios/infrastructure/data/family-scenarios.ts +68 -0
- package/src/domains/scenarios/infrastructure/data/fantasy-scenarios.ts +89 -0
- package/src/domains/scenarios/infrastructure/data/fashion-scenarios.ts +66 -0
- package/src/domains/scenarios/infrastructure/data/festival-scenarios.ts +54 -0
- package/src/domains/scenarios/infrastructure/data/folklore-scenarios.ts +75 -0
- package/src/domains/scenarios/infrastructure/data/future-tech-scenarios.ts +60 -0
- package/src/domains/scenarios/infrastructure/data/gaming-scenarios.ts +24 -0
- package/src/domains/scenarios/infrastructure/data/gothic-scenarios.ts +60 -0
- package/src/domains/scenarios/infrastructure/data/historical-scenarios.ts +66 -0
- package/src/domains/scenarios/infrastructure/data/hobbies-scenarios.ts +68 -0
- package/src/domains/scenarios/infrastructure/data/home-life-scenarios.ts +88 -0
- package/src/domains/scenarios/infrastructure/data/iconic-moments-scenarios.ts +115 -0
- package/src/domains/scenarios/infrastructure/data/intimate-scenarios.ts +122 -0
- package/src/domains/scenarios/infrastructure/data/lifestyle-scenarios.ts +144 -0
- package/src/domains/scenarios/infrastructure/data/luxury-scenarios.ts +24 -0
- package/src/domains/scenarios/infrastructure/data/magical-realism-scenarios.ts +47 -0
- package/src/domains/scenarios/infrastructure/data/movie-legends-scenarios.ts +199 -0
- package/src/domains/scenarios/infrastructure/data/music-scenarios.ts +74 -0
- package/src/domains/scenarios/infrastructure/data/mystical-scenarios.ts +61 -0
- package/src/domains/scenarios/infrastructure/data/mythology-scenarios.ts +60 -0
- package/src/domains/scenarios/infrastructure/data/nostalgia-scenarios.ts +58 -0
- package/src/domains/scenarios/infrastructure/data/performance-scenarios.ts +24 -0
- package/src/domains/scenarios/infrastructure/data/pirate-era-scenarios.ts +47 -0
- package/src/domains/scenarios/infrastructure/data/post-apocalyptic-scenarios.ts +47 -0
- package/src/domains/scenarios/infrastructure/data/prehistoric-world-scenarios.ts +47 -0
- package/src/domains/scenarios/infrastructure/data/retro-arcade-scenarios.ts +46 -0
- package/src/domains/scenarios/infrastructure/data/romantic-kisses-scenarios.ts +103 -0
- package/src/domains/scenarios/infrastructure/data/samurai-scenarios.ts +46 -0
- package/src/domains/scenarios/infrastructure/data/sci-fi-scenarios.ts +66 -0
- package/src/domains/scenarios/infrastructure/data/seasonal-scenarios.ts +24 -0
- package/src/domains/scenarios/infrastructure/data/social-media-scenarios.ts +75 -0
- package/src/domains/scenarios/infrastructure/data/speed-demons-scenarios.ts +46 -0
- package/src/domains/scenarios/infrastructure/data/sports-scenarios.ts +24 -0
- package/src/domains/scenarios/infrastructure/data/steampunk-scenarios.ts +61 -0
- package/src/domains/scenarios/infrastructure/data/stolen-moments-scenarios.ts +75 -0
- package/src/domains/scenarios/infrastructure/data/sultry-scenarios.ts +87 -0
- package/src/domains/scenarios/infrastructure/data/superhero-scenarios.ts +60 -0
- package/src/domains/scenarios/infrastructure/data/surreal-dreams-scenarios.ts +47 -0
- package/src/domains/scenarios/infrastructure/data/time-based-scenarios.ts +38 -0
- package/src/domains/scenarios/infrastructure/data/travel-scenarios.ts +132 -0
- package/src/domains/scenarios/infrastructure/data/underwater-scenarios.ts +45 -0
- package/src/domains/scenarios/infrastructure/data/urban-nights-scenarios.ts +60 -0
- package/src/domains/scenarios/infrastructure/data/villainous-scenarios.ts +60 -0
- package/src/domains/scenarios/infrastructure/data/vintage-circus-scenarios.ts +46 -0
- package/src/domains/scenarios/infrastructure/data/vintage-summer-scenarios.ts +61 -0
- package/src/domains/scenarios/infrastructure/data/wedding-scenarios.ts +206 -0
- package/src/domains/scenarios/infrastructure/data/wellness-scenarios.ts +59 -0
- package/src/domains/scenarios/infrastructure/utils/scenario-utils.ts +11 -0
- package/src/features/couple-future/presentation/components/CoupleFutureWizard.tsx +1 -10
- package/src/features/scenarios/index.ts +4 -2
- package/src/index.ts +1 -0
- package/src/infrastructure/flow/useFlow.ts +23 -0
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import { Scenario, ScenarioId } from "../../domain/Scenario";
|
|
2
|
+
import { createStoryTemplate } from "../utils/scenario-utils";
|
|
3
|
+
|
|
4
|
+
export const BUCKET_LIST_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>[] = [
|
|
5
|
+
{
|
|
6
|
+
id: ScenarioId.HOT_AIR_BALLOON,
|
|
7
|
+
title: "Hot Air Balloon",
|
|
8
|
+
description: "Soaring above the world",
|
|
9
|
+
icon: "🎈",
|
|
10
|
+
imageUrl: "https://images.unsplash.com/photo-1544015759-42b7899c7178?w=800",
|
|
11
|
+
aiPrompt:
|
|
12
|
+
"A couple in a hot air balloon basket, both looking at the camera with thrilled smiles, holding champagne glasses, stunning panoramic views of Cappadocia or green valleys far below in background, golden sunrise lighting, epic and magical",
|
|
13
|
+
storyTemplate: createStoryTemplate(
|
|
14
|
+
"tick off a dream together",
|
|
15
|
+
"High above the world, they see their future - vast, beautiful, and limitless.",
|
|
16
|
+
),
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
id: ScenarioId.SCUBA_DIVING,
|
|
20
|
+
title: "Scuba Diving",
|
|
21
|
+
description: "Underwater exploration",
|
|
22
|
+
icon: "🌊",
|
|
23
|
+
imageUrl: "https://images.unsplash.com/photo-1544551763-46a013bb70d5?w=800",
|
|
24
|
+
aiPrompt:
|
|
25
|
+
"A couple underwater, both looking at the camera through masks with happy expressions, wearing full scuba diving gear and oxygen tanks, colorful coral reefs and tropical fish in background, crystal blue ocean water, adventurous and unique",
|
|
26
|
+
storyTemplate: createStoryTemplate(
|
|
27
|
+
"explore a whole new world",
|
|
28
|
+
"Beneath the surface, they've found a hidden paradise. A silent, beautiful world shared only by them.",
|
|
29
|
+
),
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
id: ScenarioId.THEME_PARK,
|
|
33
|
+
title: "Theme Park Magic",
|
|
34
|
+
description: "Thrills and laughs",
|
|
35
|
+
icon: "🎢",
|
|
36
|
+
imageUrl:
|
|
37
|
+
"https://images.unsplash.com/photo-1502136969935-8d8eef54d77b?w=800",
|
|
38
|
+
aiPrompt:
|
|
39
|
+
"A couple at a world-class theme park, both looking at the camera with ecstatic smiles, wearing fun mouse ears or theme park hats, holding giant lollipops or cotton candy, colorful roller coasters and magical castle in background, lively and joyful",
|
|
40
|
+
storyTemplate: createStoryTemplate(
|
|
41
|
+
"unleash their inner children",
|
|
42
|
+
"Adrenaline rushes and sweet treats. In the land of magic, they find that their love is the most magical part of all.",
|
|
43
|
+
),
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
id: ScenarioId.CIRCUS_PERFORMANCE,
|
|
47
|
+
title: "Circus Stars",
|
|
48
|
+
description: "Amazing stage adventure",
|
|
49
|
+
icon: "🎪",
|
|
50
|
+
imageUrl:
|
|
51
|
+
"https://images.unsplash.com/photo-1533174072545-7a4b6ad7a6c3?w=800",
|
|
52
|
+
aiPrompt:
|
|
53
|
+
"A couple as grand circus performers, both looking at the camera with confident showmanship smiles, dressed in elaborate sequined circus attire with top hats, grand circus tent and spotlights in background, majestic and spectacular",
|
|
54
|
+
storyTemplate: createStoryTemplate(
|
|
55
|
+
"star in their own spectacular show",
|
|
56
|
+
"Under the big top, with thousands watching, they perform the ultimate act of partnership and trust.",
|
|
57
|
+
),
|
|
58
|
+
},
|
|
59
|
+
];
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Career Scenarios
|
|
3
|
+
* Scenarios focused on professional success and career achievements
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import { Scenario, ScenarioId } from "../../domain/Scenario";
|
|
7
|
+
import { createStoryTemplate } from "../utils/scenario-utils";
|
|
8
|
+
|
|
9
|
+
export const CAREER_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>[] = [
|
|
10
|
+
{
|
|
11
|
+
id: ScenarioId.ENTREPRENEURS,
|
|
12
|
+
title: "Startup Empire",
|
|
13
|
+
description: "Build your billion-dollar dream",
|
|
14
|
+
icon: "💼",
|
|
15
|
+
imageUrl:
|
|
16
|
+
"https://images.unsplash.com/photo-1556761175-b413da4baf72?w=800&auto=format&fit=crop&q=60",
|
|
17
|
+
previewImageUrl:
|
|
18
|
+
"https://v3b.fal.media/files/b/0a89baf5/QP5vU44PHpM9AMrGKCpqu.jpg",
|
|
19
|
+
aiPrompt:
|
|
20
|
+
"A couple as successful entrepreneurs in a modern tech startup office, both standing confidently and looking directly at the camera with ambitious smiles, dressed in modern high-end business casual attire, sleek glass-walled office with city skyline view in background, inspirational and dynamic",
|
|
21
|
+
storyTemplate: createStoryTemplate(
|
|
22
|
+
"launch their revolutionary startup",
|
|
23
|
+
"From a garage idea to a thriving company, they've built something extraordinary together. Their partnership in business mirrors their partnership in life.",
|
|
24
|
+
),
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
id: ScenarioId.ARTISTS,
|
|
28
|
+
title: "Creative Souls",
|
|
29
|
+
description: "Art that touches hearts worldwide",
|
|
30
|
+
icon: "🎨",
|
|
31
|
+
imageUrl:
|
|
32
|
+
"https://images.unsplash.com/photo-1513364776144-60967b0f800f?w=800&auto=format&fit=crop&q=60",
|
|
33
|
+
aiPrompt:
|
|
34
|
+
"A couple as creative artists in a sunlit studio, both looking at the camera with expressive artistic smiles, dressed in stylish paint-splattered bohemian clothing, cluttered creative studio filled with canvases and art supplies in background, vibrant and expressive",
|
|
35
|
+
storyTemplate: createStoryTemplate(
|
|
36
|
+
"create masterpieces that touch hearts",
|
|
37
|
+
"Their art reflects their love - bold, beautiful, and timeless. Together, they inspire the world with their creative vision.",
|
|
38
|
+
),
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
id: ScenarioId.SCIENTISTS,
|
|
42
|
+
title: "Science Pioneers",
|
|
43
|
+
description: "Discover world-changing breakthroughs",
|
|
44
|
+
icon: "🔬",
|
|
45
|
+
imageUrl:
|
|
46
|
+
"https://images.unsplash.com/photo-1532187863486-abf9dbad1b69?w=800&auto=format&fit=crop&q=60",
|
|
47
|
+
previewImageUrl:
|
|
48
|
+
"https://v3b.fal.media/files/b/0a89ba56/3WpJyXdaKw5yZPcSQP0wF.jpg",
|
|
49
|
+
aiPrompt:
|
|
50
|
+
"A couple as pioneering scientists in a modern laboratory, both standing side-by-side and looking at the camera with intelligent proud expressions, dressed in crisp white lab coats, cutting-edge research laboratory with high-tech equipment in background, clean and professional",
|
|
51
|
+
storyTemplate: createStoryTemplate(
|
|
52
|
+
"make groundbreaking discoveries",
|
|
53
|
+
"In the pursuit of knowledge, they've found not just scientific breakthroughs, but a partnership that defies all logic and reason.",
|
|
54
|
+
),
|
|
55
|
+
},
|
|
56
|
+
];
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Scenario, ScenarioId } from "../../domain/Scenario";
|
|
2
|
+
import { createStoryTemplate } from "../utils/scenario-utils";
|
|
3
|
+
|
|
4
|
+
export const CASINO_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>[] = [
|
|
5
|
+
{
|
|
6
|
+
id: ScenarioId.HIGH_ROLLER_ROULETTE,
|
|
7
|
+
title: "The High Roller",
|
|
8
|
+
description: "All on red",
|
|
9
|
+
icon: "🎰",
|
|
10
|
+
imageUrl:
|
|
11
|
+
"https://images.unsplash.com/photo-1541278107931-e00652309623?w=800",
|
|
12
|
+
aiPrompt:
|
|
13
|
+
"A couple at a high-end roulette table in a glamorous casino, man in a sharp black tuxedo, woman in a shimmering evening gown and diamonds, everyone watching as the wheel spins, both looking at each other with intense daring smiles, luxury lighting, cinematic and high-stakes",
|
|
14
|
+
storyTemplate: createStoryTemplate(
|
|
15
|
+
"play the ultimate game of chance and charm",
|
|
16
|
+
"They aren't just gambling on the wheel; they're betting on each other. And with a bond like theirs, they always come out on top.",
|
|
17
|
+
),
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
id: ScenarioId.MARTINI_POWER_COUPLE,
|
|
21
|
+
title: "Martini Secrets",
|
|
22
|
+
description: "Shaken, not stirred",
|
|
23
|
+
icon: "🍸",
|
|
24
|
+
imageUrl:
|
|
25
|
+
"https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b?w=800",
|
|
26
|
+
aiPrompt:
|
|
27
|
+
"A couple sitting at a sleek marble bar in a luxury casino, holding martini glasses, both looking at the camera with mysterious and alluring smiles, wearing high-end formal attire, sophisticated gold and glass decor in background, James Bond style elegance",
|
|
28
|
+
storyTemplate: createStoryTemplate(
|
|
29
|
+
"share a secret in the heart of high society",
|
|
30
|
+
"In a world of glamour and intrigue, they are the most interesting pair in the room. Cool, collected, and completely devoted.",
|
|
31
|
+
),
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
id: ScenarioId.CASINO_HEIST_ESCAPE,
|
|
35
|
+
title: "The Great Escape",
|
|
36
|
+
description: "Winners take all",
|
|
37
|
+
icon: "🏎️",
|
|
38
|
+
imageUrl:
|
|
39
|
+
"https://images.unsplash.com/photo-1540324155974-7523202daa3f?w=800",
|
|
40
|
+
aiPrompt:
|
|
41
|
+
"A couple walking briskly away from a grand casino entrance at night, man carrying a silver briefcase, woman looking over her shoulder with a triumphant smile, both in evening attire, valet parking with luxury cars in background, cinematic action lighting, thrilling and stylish",
|
|
42
|
+
storyTemplate: createStoryTemplate(
|
|
43
|
+
"pull off the most stylish heist of the century",
|
|
44
|
+
"They came, they saw, and they won. Not just the chips, but a life of thrill that only a duo like them could handle.",
|
|
45
|
+
),
|
|
46
|
+
},
|
|
47
|
+
];
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import { Scenario, ScenarioId } from "../../domain/Scenario";
|
|
2
|
+
import { createStoryTemplate } from "../utils/scenario-utils";
|
|
3
|
+
|
|
4
|
+
export const CELEBRATION_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>[] = [
|
|
5
|
+
{
|
|
6
|
+
id: ScenarioId.CHRISTMAS,
|
|
7
|
+
title: "Christmas Together",
|
|
8
|
+
description: "Magic of the holidays",
|
|
9
|
+
icon: "🎄",
|
|
10
|
+
imageUrl: "https://images.unsplash.com/photo-1543589077-47d81606c1af?w=800",
|
|
11
|
+
aiPrompt:
|
|
12
|
+
"A couple standing by a beautiful Christmas tree, both looking at the camera with warm happy smiles, dressed in cozy festive sweaters, soft glowing holiday lights and ornaments, snow visible through window in background, magical and warm",
|
|
13
|
+
storyTemplate: createStoryTemplate(
|
|
14
|
+
"celebrate the magic of Christmas",
|
|
15
|
+
"Wrapped in the warmth of holiday lights, they share the greatest gift of all - each other.",
|
|
16
|
+
),
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
id: ScenarioId.NEW_YEARS,
|
|
20
|
+
title: "New Year's Eve",
|
|
21
|
+
description: "Counting down to forever",
|
|
22
|
+
icon: "🎆",
|
|
23
|
+
imageUrl:
|
|
24
|
+
"https://images.unsplash.com/photo-1514525253344-073cda4b8966?w=800",
|
|
25
|
+
aiPrompt:
|
|
26
|
+
"A couple at a glamorous New Year's Eve party, both looking at the camera with ecstatic smiles, dressed in elegant evening attire, holding champagne glasses, fireworks and city lights in background, celebratory and bright",
|
|
27
|
+
storyTemplate: createStoryTemplate(
|
|
28
|
+
"ring in the new year together",
|
|
29
|
+
"As the clock strikes midnight, they toast to a future filled with new adventures and eternal love.",
|
|
30
|
+
),
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
id: ScenarioId.VALENTINES,
|
|
34
|
+
title: "Valentine's Romance",
|
|
35
|
+
description: "Day of love",
|
|
36
|
+
icon: "❤️",
|
|
37
|
+
imageUrl:
|
|
38
|
+
"https://images.unsplash.com/photo-1518199266791-5375a83190b7?w=800",
|
|
39
|
+
aiPrompt:
|
|
40
|
+
"A couple at a romantic candlelit dinner, both looking at the camera with loving smiles, dressed in sophisticated evening wear, holding hands across a table with red roses, soft intimate lighting, romantic restaurant in background",
|
|
41
|
+
storyTemplate: createStoryTemplate(
|
|
42
|
+
"celebrate the day of love",
|
|
43
|
+
"Every day is Valentine's Day when they're together, but today feels a little more magical.",
|
|
44
|
+
),
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
id: ScenarioId.BIRTHDAY,
|
|
48
|
+
title: "Birthday Surprise",
|
|
49
|
+
description: "Wishing for the best",
|
|
50
|
+
icon: "🎂",
|
|
51
|
+
imageUrl:
|
|
52
|
+
"https://images.unsplash.com/photo-1464349095431-e9a21285b5f3?w=800",
|
|
53
|
+
aiPrompt:
|
|
54
|
+
"A couple celebrating a birthday, both looking at the camera with joyful smiles, holding a lit birthday cake, colorful balloons and confetti in background, festive and happy atmosphere",
|
|
55
|
+
storyTemplate: createStoryTemplate(
|
|
56
|
+
"celebrate a special birthday",
|
|
57
|
+
"Another year older, another year of building a beautiful life together. Every wish is for their shared future.",
|
|
58
|
+
),
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
id: ScenarioId.HALLOWEEN,
|
|
62
|
+
title: "Halloween Duo",
|
|
63
|
+
description: "Spooky and sweet",
|
|
64
|
+
icon: "🎃",
|
|
65
|
+
imageUrl:
|
|
66
|
+
"https://images.unsplash.com/photo-1509248961158-e54f6934749c?w=800",
|
|
67
|
+
aiPrompt:
|
|
68
|
+
"A couple in elaborate matching Halloween costumes, both looking at the camera with playful expressions, dressed in creative costumes, misty graveyard or spooky mansion setting in background, cinematic and fun",
|
|
69
|
+
storyTemplate: createStoryTemplate(
|
|
70
|
+
"embrace the spooky season",
|
|
71
|
+
"Even in the spookiest settings, their love shines through. The ultimate team for any adventure.",
|
|
72
|
+
),
|
|
73
|
+
},
|
|
74
|
+
];
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Cinematic Scenarios
|
|
3
|
+
* Scenarios focused on popular movie genres and aesthetics
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import { Scenario, ScenarioId } from "../../domain/Scenario";
|
|
7
|
+
import { createStoryTemplate } from "../utils/scenario-utils";
|
|
8
|
+
|
|
9
|
+
export const CINEMATIC_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>[] = [
|
|
10
|
+
{
|
|
11
|
+
id: ScenarioId.SECRET_AGENT,
|
|
12
|
+
title: "Secret Agents",
|
|
13
|
+
description: "Espionage and action",
|
|
14
|
+
icon: "🕴️",
|
|
15
|
+
imageUrl:
|
|
16
|
+
"https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=800&auto=format&fit=crop&q=60",
|
|
17
|
+
aiPrompt:
|
|
18
|
+
"A couple as secret agents in a casino, both standing near a table and looking at the camera with confident mysterious expressions, dressed in tuxedo and elegant evening dress, high-stakes casino royale setting with dramatic lighting in background, mysterious and elegant",
|
|
19
|
+
storyTemplate: createStoryTemplate(
|
|
20
|
+
"embark on a high-stakes mission",
|
|
21
|
+
"In a world of secrets and danger, they are the only truth each other needs.",
|
|
22
|
+
),
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
id: ScenarioId.FILM_NOIR,
|
|
26
|
+
title: "Film Noir",
|
|
27
|
+
description: "Classic detective mystery",
|
|
28
|
+
icon: "🕵️",
|
|
29
|
+
imageUrl:
|
|
30
|
+
"https://images.unsplash.com/photo-1485686531765-ba63b07845a7?w=800&auto=format&fit=crop&q=60",
|
|
31
|
+
aiPrompt:
|
|
32
|
+
"A couple in Film Noir style, both looking at the camera with moody intense expressions, dressed in 1940s trench coats and fedoras, black and white high-contrast lighting with film grain, rainy city street at night with dramatic shadows in background, mysterious and moody",
|
|
33
|
+
storyTemplate: createStoryTemplate(
|
|
34
|
+
"solve the mystery of the night",
|
|
35
|
+
"In the shadows of the city, their love is the only light that matters.",
|
|
36
|
+
),
|
|
37
|
+
},
|
|
38
|
+
|
|
39
|
+
{
|
|
40
|
+
id: ScenarioId.WES_ANDERSON,
|
|
41
|
+
title: "Indie Aesthetics",
|
|
42
|
+
description: "Symmetrical pastel dream",
|
|
43
|
+
icon: "🎥",
|
|
44
|
+
imageUrl:
|
|
45
|
+
"https://images.unsplash.com/photo-1502082553048-f009c37129b9?w=800&auto=format&fit=crop&q=60",
|
|
46
|
+
aiPrompt:
|
|
47
|
+
"A couple in Wes Anderson style, both standing symmetrically and looking directly at the camera with deadpan expressions, dressed in quirky vintage outfits, symmetrical composition with pastel color palette, whimsical hotel or stylized set in background, quirky and symmetric",
|
|
48
|
+
storyTemplate: createStoryTemplate(
|
|
49
|
+
"star in their own quirky tale",
|
|
50
|
+
"In a perfectly symmetrical world, they found the perfect asymmetry of love.",
|
|
51
|
+
),
|
|
52
|
+
},
|
|
53
|
+
];
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
import { Scenario, ScenarioId } from "../../domain/Scenario";
|
|
2
|
+
import { createStoryTemplate } from "../utils/scenario-utils";
|
|
3
|
+
|
|
4
|
+
export const CONNECTION_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>[] = [
|
|
5
|
+
{
|
|
6
|
+
id: ScenarioId.SURPRISE_REVEAL,
|
|
7
|
+
title: "The Future Revelation",
|
|
8
|
+
description: "Seeing your future for the first time",
|
|
9
|
+
icon: "📱",
|
|
10
|
+
imageUrl:
|
|
11
|
+
"https://images.unsplash.com/photo-1516724562728-afc824a36e84?w=800",
|
|
12
|
+
aiPrompt:
|
|
13
|
+
"A couple sitting closely on a sofa, one holding a smartphone and showing the screen to the other with a look of pure joy and excitement, the partner reacting with a wide amazed smile and teary eyes, a moment of deep connection and wonder, soft domestic evening lighting, blurred living room background",
|
|
14
|
+
storyTemplate: createStoryTemplate(
|
|
15
|
+
"see a glimpse of their future together",
|
|
16
|
+
"One look at the screen, and the world stands still. Seeing their future self together makes every moment of the present feel infinitely more precious.",
|
|
17
|
+
),
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
id: ScenarioId.SOULMATE_CONNECTION,
|
|
21
|
+
title: "Soulmate Connection",
|
|
22
|
+
description: "A gaze that says everything",
|
|
23
|
+
icon: "👁️",
|
|
24
|
+
imageUrl:
|
|
25
|
+
"https://images.unsplash.com/photo-1516589174184-c6a6de9e09d1?w=800",
|
|
26
|
+
aiPrompt:
|
|
27
|
+
"A couple in a close intimate embrace, foreheads touching, eyes locked with deep soulful expressions, looking at each other with pure unconditional love, soft cinematic lighting, minimalist neutral background to focus on facial expressions, raw emotional connection",
|
|
28
|
+
storyTemplate: createStoryTemplate(
|
|
29
|
+
"connect on a soul-deep level",
|
|
30
|
+
"Words aren't needed when two souls recognize each other. In this silent moment, they promise a lifetime of understanding.",
|
|
31
|
+
),
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
id: ScenarioId.FUTURE_VISIONS,
|
|
35
|
+
title: "Future Visions",
|
|
36
|
+
description: "Dreaming together",
|
|
37
|
+
icon: "🌠",
|
|
38
|
+
imageUrl:
|
|
39
|
+
"https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=800",
|
|
40
|
+
aiPrompt:
|
|
41
|
+
"A couple standing on a high balcony overlooking a vast sunset horizon, pointing towards the distance, both looking at the camera with hopeful visionary smiles, imagining their shared future, golden hour lighting, epic and inspiring",
|
|
42
|
+
storyTemplate: createStoryTemplate(
|
|
43
|
+
"dream of the thousand paths ahead",
|
|
44
|
+
"Hand in hand, they look towards the horizon. Whatever the future holds, they know they'll face it together with courage and love.",
|
|
45
|
+
),
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
id: ScenarioId.DEEP_CONVERSATION,
|
|
49
|
+
title: "Meaningful Talk",
|
|
50
|
+
description: "Connecting through words",
|
|
51
|
+
icon: "💬",
|
|
52
|
+
imageUrl:
|
|
53
|
+
"https://images.unsplash.com/photo-1515023115689-589c3f47b3fd?w=800",
|
|
54
|
+
aiPrompt:
|
|
55
|
+
"A couple sitting across from each other at a small rustic cafe table, leaning in, engaged in an intense but loving conversation, looking at each other with deep interest and empathy, warm cafe atmosphere, cinematic focus on facial expressions",
|
|
56
|
+
storyTemplate: createStoryTemplate(
|
|
57
|
+
"share their deepest thoughts",
|
|
58
|
+
"Every word builds a bridge, every secret shared strengthens the foundation of their life together.",
|
|
59
|
+
),
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
id: ScenarioId.SUPPORTIVE_EMBRACE,
|
|
63
|
+
title: "Unwavering Support",
|
|
64
|
+
description: "Your safe harbor",
|
|
65
|
+
icon: "⚓",
|
|
66
|
+
imageUrl:
|
|
67
|
+
"https://images.unsplash.com/photo-1518199266791-5375a83190b7?w=800",
|
|
68
|
+
aiPrompt:
|
|
69
|
+
"A couple in a supportive embrace, one partner resting their head on the other's shoulder with a look of relief and peace, the other partner looking at the camera with a protective and loving smile, standing in a peaceful quiet garden, soft natural lighting",
|
|
70
|
+
storyTemplate: createStoryTemplate(
|
|
71
|
+
"find strength in each other",
|
|
72
|
+
"In a world that can be loud and chaotic, they are each other's peace. A safe harbor for every storm.",
|
|
73
|
+
),
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
id: ScenarioId.UNSPOKEN_BOND,
|
|
77
|
+
title: "The Unspoken Bond",
|
|
78
|
+
description: "Harmony in silence",
|
|
79
|
+
icon: "🤝",
|
|
80
|
+
imageUrl:
|
|
81
|
+
"https://images.unsplash.com/photo-1511285560929-80b456fea0bc?w=800",
|
|
82
|
+
aiPrompt:
|
|
83
|
+
"A couple sitting side by side watching a sunset, not speaking but holding hands firmly, both looking at the camera with content tranquil smiles, the light reflecting in their eyes, peaceful natural landscape background, serene and profound",
|
|
84
|
+
storyTemplate: createStoryTemplate(
|
|
85
|
+
"share a moment of perfect harmony",
|
|
86
|
+
"They don't need much to be happy - just a quiet moment and the knowledge that they are exactly where they are supposed to be.",
|
|
87
|
+
),
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
id: ScenarioId.GROWING_OLD_TOGETHER_DEPTH,
|
|
91
|
+
title: "Eternal Growth",
|
|
92
|
+
description: "Love that deepens with time",
|
|
93
|
+
icon: "🌳",
|
|
94
|
+
imageUrl:
|
|
95
|
+
"https://images.unsplash.com/photo-1503454537195-1dcabb73ffb9?w=800",
|
|
96
|
+
aiPrompt:
|
|
97
|
+
"A couple in their older years but with the same spark in their eyes, looking at a photo album of their younger selves, looking at the camera with wise and deeply happy smiles, warm sun-drenched living room with mementos, celebrating a lifetime of growth",
|
|
98
|
+
storyTemplate: createStoryTemplate(
|
|
99
|
+
"honor the journey of a lifetime",
|
|
100
|
+
"Like wine or a great forest, their love has only grown richer, deeper, and more beautiful with every passing year.",
|
|
101
|
+
),
|
|
102
|
+
},
|
|
103
|
+
];
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { Scenario, ScenarioId } from "../../domain/Scenario";
|
|
2
|
+
import { createStoryTemplate } from "../utils/scenario-utils";
|
|
3
|
+
|
|
4
|
+
export const COZY_PLUSH_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>[] = [
|
|
5
|
+
{
|
|
6
|
+
id: ScenarioId.PAJAMA_PILLOW_FIGHT,
|
|
7
|
+
title: "Pillow Fight!",
|
|
8
|
+
description: "Playful home energy",
|
|
9
|
+
icon: "☁️",
|
|
10
|
+
imageUrl:
|
|
11
|
+
"https://images.unsplash.com/photo-1513694203232-719a280e022f?w=800",
|
|
12
|
+
aiPrompt:
|
|
13
|
+
"A couple in a bright cozy bedroom, in the middle of a playful pillow fight, feathers flying in the air, both looking at the camera with ecstatic laughing expressions, wearing colorful matching pajamas, soft morning sunlight, pure joy and domestic bliss",
|
|
14
|
+
storyTemplate: createStoryTemplate(
|
|
15
|
+
"unleash the playful energy of a shared home",
|
|
16
|
+
"Because being an adult doesn't mean you can't have a pillow fight. A love that's as light and airy as a floating feather.",
|
|
17
|
+
),
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
id: ScenarioId.GIANT_TEDDY_MOVIE,
|
|
21
|
+
title: "Giant Teddy Hug",
|
|
22
|
+
description: "The ultimate soft nest",
|
|
23
|
+
icon: "🧸",
|
|
24
|
+
imageUrl: "https://images.unsplash.com/photo-1544208062-35925507204b?w=800",
|
|
25
|
+
aiPrompt:
|
|
26
|
+
"A couple nestled together on a giant 2-meter tall soft teddy bear on a living room floor, watching a movie (glow reflecting on faces), both looking at the camera with sleepy contented smiles, wrapped in a fluffy blanket, soft fairy lights in background, ultra-cozy",
|
|
27
|
+
storyTemplate: createStoryTemplate(
|
|
28
|
+
"sink into the softest embrace ever",
|
|
29
|
+
"When the world outside is cold, they have their own plush paradise. A nest of comfort built for the sweetest dreams.",
|
|
30
|
+
),
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
id: ScenarioId.CLOUD_NINE_SOFTNESS,
|
|
34
|
+
title: "Cloud Nine",
|
|
35
|
+
description: "Dreamy comfort",
|
|
36
|
+
icon: "☁️",
|
|
37
|
+
imageUrl:
|
|
38
|
+
"https://images.unsplash.com/photo-1506126613408-eca07ce68773?w=800",
|
|
39
|
+
aiPrompt:
|
|
40
|
+
"A couple lying face-up on a sea of white plush cushions and soft blankets, looking at each other with peaceful dreamy smiles, glowing soft white environment, feeling of weightlessness and ultimate comfort, ethereal and heartwarming",
|
|
41
|
+
storyTemplate: createStoryTemplate(
|
|
42
|
+
"float on a sea of soft dreams",
|
|
43
|
+
"They've found their own corner of heaven. A place where gravity doesn't exist and the only thing that matters is the softness they share.",
|
|
44
|
+
),
|
|
45
|
+
},
|
|
46
|
+
];
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Creative Arts Scenarios
|
|
3
|
+
* Photography, art, and creative pursuits
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import { Scenario, ScenarioId } from "../../domain/Scenario";
|
|
7
|
+
import { createStoryTemplate } from "../utils/scenario-utils";
|
|
8
|
+
|
|
9
|
+
export const CREATIVE_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>[] = [
|
|
10
|
+
{
|
|
11
|
+
id: ScenarioId.PHOTOGRAPHY_DUO,
|
|
12
|
+
title: "Photography Duo",
|
|
13
|
+
description: "Capturing life together",
|
|
14
|
+
icon: "📷",
|
|
15
|
+
imageUrl:
|
|
16
|
+
"https://images.unsplash.com/photo-1452587925148-ce544e77e70d?w=800&auto=format&fit=crop&q=60",
|
|
17
|
+
aiPrompt:
|
|
18
|
+
"A couple as professional photographers, both looking at the camera with creative smiles, dressed in stylish photographer vests and casual attire, holding professional cameras, scenic outdoor location with golden hour lighting in background, artistic and passionate",
|
|
19
|
+
storyTemplate: createStoryTemplate(
|
|
20
|
+
"capture the world through their lens",
|
|
21
|
+
"Together they frame not just photos, but memories. Every click is a moment of their love story.",
|
|
22
|
+
),
|
|
23
|
+
},
|
|
24
|
+
];
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Culinary & Food Scenarios
|
|
3
|
+
* Wine, food, and culinary experiences
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import { Scenario, ScenarioId } from "../../domain/Scenario";
|
|
7
|
+
import { createStoryTemplate } from "../utils/scenario-utils";
|
|
8
|
+
|
|
9
|
+
export const CULINARY_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>[] = [
|
|
10
|
+
{
|
|
11
|
+
id: ScenarioId.VINEYARD,
|
|
12
|
+
title: "Vineyard Romance",
|
|
13
|
+
description: "Wine country escape",
|
|
14
|
+
icon: "🍇",
|
|
15
|
+
imageUrl:
|
|
16
|
+
"https://images.unsplash.com/photo-1506377247377-2a5b3b417ebb?w=800&auto=format&fit=crop&q=60",
|
|
17
|
+
aiPrompt:
|
|
18
|
+
"A couple walking through a vineyard, both looking at the camera with content smiles, dressed in elegant casual attire, holding wine glasses, endless rows of grapevines and rolling hills in background, romantic and pastoral",
|
|
19
|
+
storyTemplate: createStoryTemplate(
|
|
20
|
+
"stroll through wine country",
|
|
21
|
+
"Among the vines, they toast to a love that only gets better with time, like the finest vintage.",
|
|
22
|
+
),
|
|
23
|
+
},
|
|
24
|
+
];
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Cultural Scenarios
|
|
3
|
+
* Scenarios with cultural and historical themes
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import { Scenario, ScenarioId } from "../../domain/Scenario";
|
|
7
|
+
import { createStoryTemplate } from "../utils/scenario-utils";
|
|
8
|
+
|
|
9
|
+
export const CULTURAL_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>[] = [
|
|
10
|
+
{
|
|
11
|
+
id: "japanese_traditional" as ScenarioId,
|
|
12
|
+
title: "Japanese Elegance",
|
|
13
|
+
description: "Timeless beauty of Edo period",
|
|
14
|
+
icon: "🏯",
|
|
15
|
+
imageUrl:
|
|
16
|
+
"https://v3b.fal.media/files/b/0a8a3e0e/s6SBpgKeHS3AL0ykrc4ac.jpg",
|
|
17
|
+
previewImageUrl:
|
|
18
|
+
"https://lh3.googleusercontent.com/aida-public/AB6AXuB7NHQEX8jKFPnEH9iS3W2NKLRHeLAnBfBB-qi8tDU-HPv0DFNgqNwANgIJIPv1O7B9YHC4E7GtVoSLLhm-tbWHGXh0bUcm20VxSsn-0GHO0AoPCz6NFkgKg2hwYzBWT9I0Ts7MaB7Ip86HB75mKBvrI_fRM38CncAz4K1ZKxFreFokuRp-V2VMO4CmOgBFHv6l36oRr-Pqx5l03ygPSVvSv6iZVNBi_dVdGNy8ERbBm6Ob5enFIbURqwb89AnoQL51yoeubQv65Kjc",
|
|
19
|
+
aiPrompt:
|
|
20
|
+
"A couple in traditional Japanese Edo period attire, both standing in a garden and looking at the camera with gentle expressions, dressed in elegant kimono and hakama, Japanese temple garden with cherry blossoms in background, cultural and elegant",
|
|
21
|
+
storyTemplate: createStoryTemplate(
|
|
22
|
+
"step into traditional Japan",
|
|
23
|
+
"In the timeless elegance of the Edo period, their love story unfolds like a delicate fan painting.",
|
|
24
|
+
),
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
id: "ancient_egypt" as ScenarioId,
|
|
28
|
+
title: "Egyptian Royalty",
|
|
29
|
+
description: "Rule like ancient pharaohs",
|
|
30
|
+
icon: "🏛️",
|
|
31
|
+
imageUrl:
|
|
32
|
+
"https://lh3.googleusercontent.com/aida-public/AB6AXuCTPP4dellqI7FGcpf0o1oJiiukArG5TpjxHZcdo3GRpl51Bq36tTyNevGOK3ns2eaH2jfL5q3V2tPhHBdNMXzzRu5C126OQb4sqNecwiXC7WIFxoVgqpaQtEt8qjQ0eZ15gFuCnhk4e3T4Mos0BZOCM7SflBdvJI2NIj-l-ro3pKH_SVWx7HZ5POS3PLS6G-frikx0jvDosiQhAuag4Cwg5Jew0d1WCYNWRVYoixsRwYUStUyb8ysq_ykvpYaLljvcnoGVzkrvdWgU",
|
|
33
|
+
previewImageUrl:
|
|
34
|
+
"https://v3b.fal.media/files/b/0a89baa4/lr98UkFQjWRDE7br8Nj6r.jpg",
|
|
35
|
+
aiPrompt:
|
|
36
|
+
"A couple as Ancient Egyptian royalty, both looking at the camera with regal expressions, dressed in golden headdresses and jewelry, pyramids at sunset and hieroglyphs in background, majestic and historic",
|
|
37
|
+
storyTemplate: createStoryTemplate(
|
|
38
|
+
"rule ancient Egypt together",
|
|
39
|
+
"Like the eternal pyramids, their bond transcends time, written in hieroglyphs of gold.",
|
|
40
|
+
),
|
|
41
|
+
},
|
|
42
|
+
|
|
43
|
+
{
|
|
44
|
+
id: "ottoman_miniature" as ScenarioId,
|
|
45
|
+
title: "Ottoman Art",
|
|
46
|
+
description: "Exquisite palace miniature painting",
|
|
47
|
+
icon: "🎨",
|
|
48
|
+
imageUrl:
|
|
49
|
+
"https://lh3.googleusercontent.com/aida-public/AB6AXuC9aTZBLOrBoP4_wneQHqxdhMfoZ5dqRq_b8Vu4qopR9BrnUpHnzw1zw08sOvio-mGwdjMo31q7IJ9THFMUDGmSOR84IyMvDs_CdCmPVm61MuQWN5TraIUZzYRDNDMygi1_dqCPrMJboRovzAav_M6l-7yKlR25BPvkwcZ_T4TcWhqwqBF4cqhAG5wfUMS2IygeBDAC2qYREQCdARUjL3FBuNwz4qXy8TrFJhzykkcO5aKLYwW36z4tFcCTeHIiN1aIli9Vcxdq9wqb",
|
|
50
|
+
previewImageUrl:
|
|
51
|
+
"https://v3b.fal.media/files/b/0a89ba0d/FK1o-Yy-L1FiTAAd_SOdv.jpg",
|
|
52
|
+
aiPrompt:
|
|
53
|
+
"A couple in traditional Ottoman miniature art style, both looking at the camera, dressed in traditional clothing with ornate patterns, rich colors with gold accents, Turkish palace setting in background, intricate and historic",
|
|
54
|
+
storyTemplate: createStoryTemplate(
|
|
55
|
+
"become part of palace art",
|
|
56
|
+
"Immortalized in the delicate brushstrokes of a master miniaturist, their love becomes timeless art.",
|
|
57
|
+
),
|
|
58
|
+
},
|
|
59
|
+
|
|
60
|
+
{
|
|
61
|
+
id: "indian_bollywood" as ScenarioId,
|
|
62
|
+
title: "Bollywood Magic",
|
|
63
|
+
description: "Vibrant cinematic romance",
|
|
64
|
+
icon: "🎬",
|
|
65
|
+
imageUrl:
|
|
66
|
+
"https://images.unsplash.com/photo-1524492412937-b28074a5d7da?w=800&auto=format&fit=crop&q=60",
|
|
67
|
+
previewImageUrl:
|
|
68
|
+
"https://v3b.fal.media/files/b/0a89ba32/Asyucw3VIpGtLMn109X-z.jpg",
|
|
69
|
+
aiPrompt:
|
|
70
|
+
"A couple in Bollywood movie style, both looking at the camera with vibrant romantic smiles, dressed in vibrant traditional Indian wedding attire, colorful fabrics, dramatic palace or Taj Mahal setting in background, vibrant and romantic",
|
|
71
|
+
storyTemplate: createStoryTemplate(
|
|
72
|
+
"star in their own Bollywood romance",
|
|
73
|
+
"With the grandeur of Indian cinema, their love story unfolds in vibrant colors and timeless melody.",
|
|
74
|
+
),
|
|
75
|
+
},
|
|
76
|
+
];
|