@umituz/react-native-ai-generation-content 1.27.2 → 1.27.4
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/creations/presentation/components/CreationCard.tsx +2 -1
- package/src/domains/creations/presentation/components/CreationCard.types.ts +2 -0
- package/src/domains/creations/presentation/screens/CreationsGalleryScreen.tsx +10 -1
- package/src/domains/scenarios/infrastructure/data/festival-scenarios.ts +13 -7
- package/src/domains/scenarios/infrastructure/data/folklore-scenarios.ts +21 -11
- package/src/domains/scenarios/infrastructure/data/future-tech-scenarios.ts +17 -9
- package/src/domains/scenarios/infrastructure/data/gaming-scenarios.ts +5 -3
- package/src/domains/scenarios/infrastructure/data/gothic-scenarios.ts +17 -9
- package/src/domains/scenarios/infrastructure/data/historical-scenarios.ts +17 -9
- package/src/domains/scenarios/infrastructure/data/hobbies-scenarios.ts +17 -9
- package/src/domains/scenarios/infrastructure/data/iconic-moments-scenarios.ts +33 -17
- package/src/domains/scenarios/infrastructure/data/luxury-scenarios.ts +5 -3
- package/src/domains/scenarios/infrastructure/data/magical-realism-scenarios.ts +13 -7
- package/src/domains/scenarios/infrastructure/data/movie-legends-scenarios.ts +57 -29
- package/src/domains/scenarios/infrastructure/data/music-scenarios.ts +21 -11
- package/src/domains/scenarios/infrastructure/data/mystical-scenarios.ts +17 -9
- package/src/domains/scenarios/infrastructure/data/mythology-scenarios.ts +17 -9
- package/src/domains/scenarios/infrastructure/data/nostalgia-scenarios.ts +17 -9
- package/src/domains/scenarios/infrastructure/data/performance-scenarios.ts +5 -3
- package/src/domains/scenarios/infrastructure/data/pirate-era-scenarios.ts +13 -7
- package/src/domains/scenarios/infrastructure/data/post-apocalyptic-scenarios.ts +13 -7
- package/src/domains/scenarios/infrastructure/data/prehistoric-world-scenarios.ts +13 -7
- package/src/domains/scenarios/infrastructure/data/retro-arcade-scenarios.ts +13 -7
- package/src/domains/scenarios/infrastructure/data/samurai-scenarios.ts +13 -7
- package/src/domains/scenarios/infrastructure/data/sci-fi-scenarios.ts +17 -9
- package/src/domains/scenarios/infrastructure/data/seasonal-scenarios.ts +5 -3
- package/src/domains/scenarios/infrastructure/data/social-media-scenarios.ts +21 -11
- package/src/domains/scenarios/infrastructure/data/speed-demons-scenarios.ts +13 -7
- package/src/domains/scenarios/infrastructure/data/sports-scenarios.ts +5 -3
- package/src/domains/scenarios/infrastructure/data/steampunk-scenarios.ts +17 -9
- package/src/domains/scenarios/infrastructure/data/superhero-scenarios.ts +17 -9
- package/src/domains/scenarios/infrastructure/data/surreal-dreams-scenarios.ts +13 -7
- package/src/domains/scenarios/infrastructure/data/time-based-scenarios.ts +9 -5
- package/src/domains/scenarios/infrastructure/data/underwater-scenarios.ts +13 -7
- package/src/domains/scenarios/infrastructure/data/villainous-scenarios.ts +17 -9
- package/src/domains/scenarios/infrastructure/data/vintage-circus-scenarios.ts +13 -7
- package/src/domains/scenarios/infrastructure/data/vintage-summer-scenarios.ts +17 -9
- package/src/domains/scenarios/infrastructure/data/wellness-scenarios.ts +17 -9
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Scenario, ScenarioId } from "../../domain/Scenario";
|
|
2
|
-
import { createStoryTemplate } from "../utils/scenario-utils";
|
|
2
|
+
import { createPhotorealisticPrompt, createStoryTemplate } from "../utils/scenario-utils";
|
|
3
3
|
|
|
4
4
|
export const SUPERHERO_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>[] = [
|
|
5
5
|
{
|
|
@@ -9,8 +9,10 @@ export const SUPERHERO_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>[] =
|
|
|
9
9
|
icon: "🦸",
|
|
10
10
|
imageUrl:
|
|
11
11
|
"https://images.unsplash.com/photo-1531259683007-016a7b628fc3?w=800",
|
|
12
|
-
aiPrompt:
|
|
13
|
-
"
|
|
12
|
+
aiPrompt: createPhotorealisticPrompt(
|
|
13
|
+
"a couple as superhero duo standing on skyscraper ledge at night, both facing camera with heroic determined expressions, man in sleek dark armored suit with glowing emblem, woman in high-tech red and gold suit with flowing cape, capes billowing in wind, city skyline with spotlight beams in background",
|
|
14
|
+
"dramatic nighttime lighting with city glow and epic cinematic atmosphere"
|
|
15
|
+
),
|
|
14
16
|
storyTemplate: createStoryTemplate(
|
|
15
17
|
"protect the city together",
|
|
16
18
|
"They aren't just heroes to the city; they are each other's greatest strength and ultimate sanctuary.",
|
|
@@ -22,8 +24,10 @@ export const SUPERHERO_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>[] =
|
|
|
22
24
|
description: "Where heroes relax",
|
|
23
25
|
icon: "🏢",
|
|
24
26
|
imageUrl: "https://images.unsplash.com/photo-1550745165-9bc0b252726f?w=800",
|
|
25
|
-
aiPrompt:
|
|
26
|
-
"
|
|
27
|
+
aiPrompt: createPhotorealisticPrompt(
|
|
28
|
+
"a couple in high-tech superhero base, both facing camera with relaxed comfortable smiles, superhero suits half-removed revealing casual clothes underneath, surrounded by floating holographic screens and advanced gadgetry, sleek underground cave with dramatic lighting in background",
|
|
29
|
+
"soft blue tech lighting with intimate powerful atmosphere"
|
|
30
|
+
),
|
|
27
31
|
storyTemplate: createStoryTemplate(
|
|
28
32
|
"find peace behind the masks",
|
|
29
33
|
"In the quiet moments between saving the world, they find that the real hero work is the love they share.",
|
|
@@ -36,8 +40,10 @@ export const SUPERHERO_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>[] =
|
|
|
36
40
|
icon: "🌌",
|
|
37
41
|
imageUrl:
|
|
38
42
|
"https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=800",
|
|
39
|
-
aiPrompt:
|
|
40
|
-
"
|
|
43
|
+
aiPrompt: createPhotorealisticPrompt(
|
|
44
|
+
"a couple as space-faring superheroes floating above alien planet, both facing camera with adventurous confident expressions, wearing glowing energy suits that pulse with cosmic power, hands radiating energy, purple alien landscape with twin moons and distant galaxies in background",
|
|
45
|
+
"ethereal cosmic lighting with purple and blue energy glow"
|
|
46
|
+
),
|
|
41
47
|
storyTemplate: createStoryTemplate(
|
|
42
48
|
"guard the furthest reaches of space",
|
|
43
49
|
"Across light-years and galaxies, they are a constant, a binary star shining brighter together than apart.",
|
|
@@ -50,8 +56,10 @@ export const SUPERHERO_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>[] =
|
|
|
50
56
|
icon: "🌃",
|
|
51
57
|
imageUrl:
|
|
52
58
|
"https://images.unsplash.com/photo-1478720568477-152d9b164e26?w=800",
|
|
53
|
-
aiPrompt:
|
|
54
|
-
"
|
|
59
|
+
aiPrompt: createPhotorealisticPrompt(
|
|
60
|
+
"a couple as street-level vigilantes in rainy city alley at night, both facing camera with gritty focused expressions, wearing tactical black leather gear with domino masks, holding batons and grappling hooks, steam rising from grates and neon signs reflecting in rain puddles in background",
|
|
61
|
+
"moody cinematic rain lighting with neon reflections and noir atmosphere"
|
|
62
|
+
),
|
|
55
63
|
storyTemplate: createStoryTemplate(
|
|
56
64
|
"fight for justice in the shadows",
|
|
57
65
|
"No superpowers needed - just skill, courage, and a bond that's tougher than the city's roughest streets.",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Scenario, ScenarioId } from "../../domain/Scenario";
|
|
2
|
-
import { createStoryTemplate } from "../utils/scenario-utils";
|
|
2
|
+
import { createPhotorealisticPrompt, createStoryTemplate } from "../utils/scenario-utils";
|
|
3
3
|
|
|
4
4
|
export const SURREAL_DREAMS_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>[] = [
|
|
5
5
|
{
|
|
@@ -9,8 +9,10 @@ export const SURREAL_DREAMS_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>
|
|
|
9
9
|
icon: "🌀",
|
|
10
10
|
imageUrl:
|
|
11
11
|
"https://images.unsplash.com/photo-1534447677768-be436bb09401?w=800",
|
|
12
|
-
aiPrompt:
|
|
13
|
-
"
|
|
12
|
+
aiPrompt: createPhotorealisticPrompt(
|
|
13
|
+
"a couple dancing weightlessly in air between surreal floating stone blocks and spiraling impossible bridges, man holding woman as they spin gracefully, both facing camera with peaceful dreamy expressions, wearing flowing silk garments that billow in zero gravity, clouds far below and massive glowing moon in background",
|
|
14
|
+
"ethereal blue and purple lighting with dreamy Inception-style atmosphere"
|
|
15
|
+
),
|
|
14
16
|
storyTemplate: createStoryTemplate(
|
|
15
17
|
"transcend the laws of physics in a world of pure imagination",
|
|
16
18
|
"When they're together, gravity has no power. They've found a way to dance among the stars, where every step is a leap of faith into the infinite.",
|
|
@@ -23,8 +25,10 @@ export const SURREAL_DREAMS_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>
|
|
|
23
25
|
icon: "⚙️",
|
|
24
26
|
imageUrl:
|
|
25
27
|
"https://images.unsplash.com/photo-1501139083538-0139583c060f?w=800",
|
|
26
|
-
aiPrompt:
|
|
27
|
-
"
|
|
28
|
+
aiPrompt: createPhotorealisticPrompt(
|
|
29
|
+
"a couple standing on giant suspended platform in sky filled with massive brass gears and clockwork mechanisms, both facing camera with awestruck expressions, man pointing at horizon, woman leaning head on his shoulder, wearing elegant Victorian clothing, giant clockwork sun visible in background",
|
|
30
|
+
"surreal golden lighting with epic sci-fi fantasy atmosphere"
|
|
31
|
+
),
|
|
28
32
|
storyTemplate: createStoryTemplate(
|
|
29
33
|
"watch the gears of the universe turn from your front-row seat",
|
|
30
34
|
"Time is a vast and complex machine, but in this moment, it has stopped just for them. They are the heartbeat in the center of the world's clock.",
|
|
@@ -37,8 +41,10 @@ export const SURREAL_DREAMS_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>
|
|
|
37
41
|
icon: "🪞",
|
|
38
42
|
imageUrl:
|
|
39
43
|
"https://images.unsplash.com/photo-1518837695005-2083093ee35b?w=800",
|
|
40
|
-
aiPrompt:
|
|
41
|
-
"
|
|
44
|
+
aiPrompt: createPhotorealisticPrompt(
|
|
45
|
+
"a couple standing on perfectly reflective black crystal floor in surreal void, surrounded by giant floating mirrors showing different versions of their future, both facing camera with profound knowing smiles, wearing elegant dark clothing, glowing crystalline structures floating in dark environment",
|
|
46
|
+
"artistic ethereal lighting with mirror reflections and surreal atmosphere"
|
|
47
|
+
),
|
|
42
48
|
storyTemplate: createStoryTemplate(
|
|
43
49
|
"see every possibility of your future in a single glance",
|
|
44
50
|
"Thousands of reflections, thousands of paths, but every single one leads back to each other. They've found the ultimate symmetry in a world of echoes.",
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { Scenario, ScenarioId } from "../../domain/Scenario";
|
|
7
|
-
import { createStoryTemplate } from "../utils/scenario-utils";
|
|
7
|
+
import { createPhotorealisticPrompt, createStoryTemplate } from "../utils/scenario-utils";
|
|
8
8
|
|
|
9
9
|
export const TIME_BASED_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>[] = [
|
|
10
10
|
{
|
|
@@ -14,8 +14,10 @@ export const TIME_BASED_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>[] =
|
|
|
14
14
|
icon: "🗓️",
|
|
15
15
|
imageUrl:
|
|
16
16
|
"https://media.istockphoto.com/id/1438587977/photo/happy-tourists-couple-friends-sightseeing-city-with-map-together-travel-people-concept.webp?a=1&b=1&s=612x612&w=0&k=20&c=vXMmKG7buuS7MMKUt3oUeZwlEJoeO67GQ27M8xbKs8g=",
|
|
17
|
-
aiPrompt:
|
|
18
|
-
"
|
|
17
|
+
aiPrompt: createPhotorealisticPrompt(
|
|
18
|
+
"a couple 5 years in the future, both facing camera with mature happy confident smiles showing subtle signs of maturity, man in upgraded stylish casual blazer, woman in elegant casual-chic dress, vibrant modern cityscape with contemporary architecture in background",
|
|
19
|
+
"bright natural daylight with warm optimistic atmosphere"
|
|
20
|
+
),
|
|
19
21
|
storyTemplate: createStoryTemplate(
|
|
20
22
|
"celebrate five wonderful years together",
|
|
21
23
|
"They've grown stronger as a couple, building a life filled with shared dreams and beautiful memories.",
|
|
@@ -28,8 +30,10 @@ export const TIME_BASED_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>[] =
|
|
|
28
30
|
icon: "🏡",
|
|
29
31
|
imageUrl:
|
|
30
32
|
"https://plus.unsplash.com/premium_photo-1711226109825-4bfa1df2c368?w=900&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NXx8Y291cGxlJTIwMTAlMjB5ZWFyc3xlbnwwfHwwfHx8MA%3D%3D",
|
|
31
|
-
aiPrompt:
|
|
32
|
-
"
|
|
33
|
+
aiPrompt: createPhotorealisticPrompt(
|
|
34
|
+
"a couple 10 years in the future, both facing camera with confident established smiles showing distinct signs of graceful maturity, man in sophisticated tailored clothing, woman in elegant refined attire, beautiful home garden with manicured landscaping or luxury environment in background",
|
|
35
|
+
"warm golden hour lighting with established comfortable atmosphere"
|
|
36
|
+
),
|
|
33
37
|
storyTemplate: createStoryTemplate(
|
|
34
38
|
"mark a beautiful decade of partnership",
|
|
35
39
|
"Ten years of love, laughter, and growth have made their bond unbreakable. They look forward to many more adventures ahead.",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Scenario, ScenarioId } from "../../domain/Scenario";
|
|
2
|
-
import { createStoryTemplate } from "../utils/scenario-utils";
|
|
2
|
+
import { createPhotorealisticPrompt, createStoryTemplate } from "../utils/scenario-utils";
|
|
3
3
|
|
|
4
4
|
export const UNDERWATER_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>[] = [
|
|
5
5
|
{
|
|
@@ -8,8 +8,10 @@ export const UNDERWATER_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>[] =
|
|
|
8
8
|
description: "Royalty of the deep",
|
|
9
9
|
icon: "🧜♂️",
|
|
10
10
|
imageUrl: "https://images.unsplash.com/photo-1544551763-46a013bb70d5?w=800",
|
|
11
|
-
aiPrompt:
|
|
12
|
-
"
|
|
11
|
+
aiPrompt: createPhotorealisticPrompt(
|
|
12
|
+
"a couple as mer-people sitting on throne made of bioluminescent white coral at ocean bottom, both facing camera with serene royal smiles, man with shimmering blue-green iridescent tail, woman with violet-pink tail and shell crown, schools of tropical fish and glowing jellyfish surrounding them, shafts of golden sunlight filtering through deep water",
|
|
13
|
+
"ethereal underwater lighting with bioluminescent glow and magical atmosphere"
|
|
14
|
+
),
|
|
13
15
|
storyTemplate: createStoryTemplate(
|
|
14
16
|
"rule the silent depths of the ocean as its most elegant guardians",
|
|
15
17
|
"They aren't just visitors to the deep; they are its heart. In the cool blue silence, they've built a kingdom that spans the entire sea.",
|
|
@@ -21,8 +23,10 @@ export const UNDERWATER_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>[] =
|
|
|
21
23
|
description: "Lost knowledge",
|
|
22
24
|
icon: "📖",
|
|
23
25
|
imageUrl: "https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=800",
|
|
24
|
-
aiPrompt:
|
|
25
|
-
"
|
|
26
|
+
aiPrompt: createPhotorealisticPrompt(
|
|
27
|
+
"a couple in ancient library inside sunken marble temple underwater, both facing camera while floating weightlessly examining glowing stone tablet together, wearing flowing ethereal garments with hair floating, tiny bubbles rising, ancient statues covered in sea plants and coral in background",
|
|
28
|
+
"soft blue-green underwater lighting with mysterious discovery atmosphere"
|
|
29
|
+
),
|
|
26
30
|
storyTemplate: createStoryTemplate(
|
|
27
31
|
"uncover the lost secrets of a civilization claimed by the tides",
|
|
28
32
|
"The world above long forgot these stories, but they are here to bring them back to life. A love that's deeper than the deepest abyss.",
|
|
@@ -35,8 +39,10 @@ export const UNDERWATER_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>[] =
|
|
|
35
39
|
icon: "✨",
|
|
36
40
|
imageUrl:
|
|
37
41
|
"https://images.unsplash.com/photo-1516450360452-9312f5e86fc7?w=800",
|
|
38
|
-
aiPrompt:
|
|
39
|
-
"
|
|
42
|
+
aiPrompt: createPhotorealisticPrompt(
|
|
43
|
+
"a couple swimming in pitch-black deep sea, faces illuminated by millions of glowing bioluminescent plankton and ethereal deep-sea creatures, both facing camera with wonder-filled expressions, surrounded by swirling blue and green light particles creating cosmic-like underwater environment",
|
|
44
|
+
"ethereal bioluminescent glow with cosmic deep-sea atmosphere"
|
|
45
|
+
),
|
|
40
46
|
storyTemplate: createStoryTemplate(
|
|
41
47
|
"become the light in the darkest corners of the ocean",
|
|
42
48
|
"In the total darkness of the deep, their connection is the brightest thing there is. A love that creates its own light in the shadows.",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Scenario, ScenarioId } from "../../domain/Scenario";
|
|
2
|
-
import { createStoryTemplate } from "../utils/scenario-utils";
|
|
2
|
+
import { createPhotorealisticPrompt, createStoryTemplate } from "../utils/scenario-utils";
|
|
3
3
|
|
|
4
4
|
export const VILLAINOUS_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>[] = [
|
|
5
5
|
{
|
|
@@ -9,8 +9,10 @@ export const VILLAINOUS_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>[] =
|
|
|
9
9
|
icon: "🦹",
|
|
10
10
|
imageUrl:
|
|
11
11
|
"https://images.unsplash.com/photo-1518199266791-5375a83190b7?w=800",
|
|
12
|
-
aiPrompt:
|
|
13
|
-
"
|
|
12
|
+
aiPrompt: createPhotorealisticPrompt(
|
|
13
|
+
"a couple as sophisticated villains in high-tech lair, both facing camera with confident villainous smirks, man in elegant dark designer suit petting white Persian cat, woman in sleek black dress holding wine glass, massive wall of monitors showing global data maps in background",
|
|
14
|
+
"dramatic low-key lighting with blue monitor glow and mysterious atmosphere"
|
|
15
|
+
),
|
|
14
16
|
storyTemplate: createStoryTemplate(
|
|
15
17
|
"plan their next big move",
|
|
16
18
|
"They don't just break the rules; they rewrite them. In a world of black and white, they are the most stylish shade of gray.",
|
|
@@ -23,8 +25,10 @@ export const VILLAINOUS_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>[] =
|
|
|
23
25
|
icon: "🔥",
|
|
24
26
|
imageUrl:
|
|
25
27
|
"https://v3b.fal.media/files/b/0a8a3e0e/s6SBpgKeHS3AL0ykrc4ac.jpg",
|
|
26
|
-
aiPrompt:
|
|
27
|
-
"
|
|
28
|
+
aiPrompt: createPhotorealisticPrompt(
|
|
29
|
+
"a couple in post-apocalyptic rebel base, both facing camera with rebellious defiant expressions, man in punk-style leather jacket with metal spikes, woman in distressed combat gear spray-painting anarchist symbol on concrete wall, sparks and flames flickering in background",
|
|
30
|
+
"chaotic orange fire lighting with energetic rebellious atmosphere"
|
|
31
|
+
),
|
|
28
32
|
storyTemplate: createStoryTemplate(
|
|
29
33
|
"shake the foundations of the world",
|
|
30
34
|
"They aren't looking for approval, just excitement. A love that's as volatile and beautiful as a supernova.",
|
|
@@ -36,8 +40,10 @@ export const VILLAINOUS_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>[] =
|
|
|
36
40
|
description: "Master of the night",
|
|
37
41
|
icon: "🎭",
|
|
38
42
|
imageUrl: "https://images.unsplash.com/photo-1541560052-77ec1bbc09f7?w=800",
|
|
39
|
-
aiPrompt:
|
|
40
|
-
"
|
|
43
|
+
aiPrompt: createPhotorealisticPrompt(
|
|
44
|
+
"a couple suspended on wires in high-security museum at night, both facing camera with focused confident smirks, wearing skin-tight black stealth suits with tactical gear, woman holding glowing blue diamond, red laser security beams and priceless art in background",
|
|
45
|
+
"dramatic tense lighting with laser beam glow and cinematic heist atmosphere"
|
|
46
|
+
),
|
|
41
47
|
storyTemplate: createStoryTemplate(
|
|
42
48
|
"steal the impossible",
|
|
43
49
|
"Even with the world's best security, they always slip through the cracks. The only thing they couldn't steal was each other's hearts - those were given freely.",
|
|
@@ -50,8 +56,10 @@ export const VILLAINOUS_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>[] =
|
|
|
50
56
|
icon: "🏰",
|
|
51
57
|
imageUrl:
|
|
52
58
|
"https://images.unsplash.com/photo-1519741497674-611481863552?w=800",
|
|
53
|
-
aiPrompt:
|
|
54
|
-
"
|
|
59
|
+
aiPrompt: createPhotorealisticPrompt(
|
|
60
|
+
"a couple on dark obsidian throne, both facing camera with cold regal smiles and subtly glowing red eyes, man in heavy black spiked armor, woman in dark flowing cape and crown, gothic cathedral throne room with red banners and flickering torches in background",
|
|
61
|
+
"dramatic dark lighting with red torch glow and intimidating majestic atmosphere"
|
|
62
|
+
),
|
|
55
63
|
storyTemplate: createStoryTemplate(
|
|
56
64
|
"rule an empire of shadows",
|
|
57
65
|
"In a kingdom built on power and fear, they are the only ones they can truly trust. Sovereigns of a world they conquered together.",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Scenario, ScenarioId } from "../../domain/Scenario";
|
|
2
|
-
import { createStoryTemplate } from "../utils/scenario-utils";
|
|
2
|
+
import { createPhotorealisticPrompt, createStoryTemplate } from "../utils/scenario-utils";
|
|
3
3
|
|
|
4
4
|
export const VINTAGE_CIRCUS_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>[] = [
|
|
5
5
|
{
|
|
@@ -9,8 +9,10 @@ export const VINTAGE_CIRCUS_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>
|
|
|
9
9
|
icon: "🎩",
|
|
10
10
|
imageUrl:
|
|
11
11
|
"https://images.unsplash.com/photo-1493225255756-d9584f8606e9?w=800",
|
|
12
|
-
aiPrompt:
|
|
13
|
-
"
|
|
12
|
+
aiPrompt: createPhotorealisticPrompt(
|
|
13
|
+
"a couple as 19th century circus ringmasters standing in center of giant spotlighted circus ring, both facing camera with charismatic confident showman smiles, man in red velvet tailcoat with gold embroidery and top hat holding cane, woman in matching red and gold costume with feathered headpiece, blurred circus audience and striped tent in background",
|
|
14
|
+
"dramatic theatrical spotlight with golden circus atmosphere"
|
|
15
|
+
),
|
|
14
16
|
storyTemplate: createStoryTemplate(
|
|
15
17
|
"take the lead in the greatest show on earth",
|
|
16
18
|
"They aren't just part of the act; they're the ones holding the baton. A relationship that's as grand and spectacular as a three-ring circus.",
|
|
@@ -22,8 +24,10 @@ export const VINTAGE_CIRCUS_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>
|
|
|
22
24
|
description: "Perfect balance",
|
|
23
25
|
icon: "🎪",
|
|
24
26
|
imageUrl: "https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=800",
|
|
25
|
-
aiPrompt:
|
|
26
|
-
"
|
|
27
|
+
aiPrompt: createPhotorealisticPrompt(
|
|
28
|
+
"a couple standing on thin high wire far above circus floor, man holding woman's hands for perfect balance, both facing camera with expressions of intense trust and loving connection, wearing shimmering silver and gold acrobatic leotards, dramatic spotlight from above illuminating them against dark circus tent",
|
|
29
|
+
"dramatic spotlight from above with tension-filled atmospheric lighting"
|
|
30
|
+
),
|
|
27
31
|
storyTemplate: createStoryTemplate(
|
|
28
32
|
"find your balance in the highest of stakes",
|
|
29
33
|
"In the air, with no net below, they only have each other to hold onto. And that's exactly where they feel the safest. A bond that never wavers.",
|
|
@@ -36,8 +40,10 @@ export const VINTAGE_CIRCUS_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>
|
|
|
36
40
|
icon: "🔮",
|
|
37
41
|
imageUrl:
|
|
38
42
|
"https://images.unsplash.com/photo-1513519245088-0e12902e5a38?w=800",
|
|
39
|
-
aiPrompt:
|
|
40
|
-
"
|
|
43
|
+
aiPrompt: createPhotorealisticPrompt(
|
|
44
|
+
"a couple inside dark velvet circus fortune-teller tent, sitting at round table with glowing crystal ball and spread tarot cards, both facing camera with mysterious knowing smiles, man in bohemian vest and rings, woman in vintage circus fortune-teller costume with scarves and jewelry, draped fabrics and mystical objects in background",
|
|
45
|
+
"warm purple and gold candlelight with intimate magical atmosphere"
|
|
46
|
+
),
|
|
41
47
|
storyTemplate: createStoryTemplate(
|
|
42
48
|
"peek into a future that's already written in the stars",
|
|
43
49
|
"The crystal ball shows many things, but for them, the answer is always the same. A future of magic, mystery, and an unbreakable shared destiny.",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Scenario, ScenarioId } from "../../domain/Scenario";
|
|
2
|
-
import { createStoryTemplate } from "../utils/scenario-utils";
|
|
2
|
+
import { createPhotorealisticPrompt, createStoryTemplate } from "../utils/scenario-utils";
|
|
3
3
|
|
|
4
4
|
export const VINTAGE_SUMMER_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>[] = [
|
|
5
5
|
{
|
|
@@ -9,8 +9,10 @@ export const VINTAGE_SUMMER_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>
|
|
|
9
9
|
icon: "🍦",
|
|
10
10
|
imageUrl:
|
|
11
11
|
"https://images.unsplash.com/photo-1501443762994-82bd5dace89a?w=800",
|
|
12
|
-
aiPrompt:
|
|
13
|
-
"
|
|
12
|
+
aiPrompt: createPhotorealisticPrompt(
|
|
13
|
+
"a couple in colorful 1950s soda shop sitting at chrome counter, sharing large milkshake with two striped straws, both facing camera with joyful youthful smiles, woman in pastel pink polka dot dress with hair ribbon, man in light blue polo shirt, checkered black and white floor and glowing neon signs in background",
|
|
14
|
+
"bright cheerful vintage indoor lighting with nostalgic 50s atmosphere"
|
|
15
|
+
),
|
|
14
16
|
storyTemplate: createStoryTemplate(
|
|
15
17
|
"step back into a simpler time of sweet treats and first dates",
|
|
16
18
|
"One milkshake, two straws, and a lifetime of sweetness ahead. They've found the perfect recipe for a timeless love.",
|
|
@@ -23,8 +25,10 @@ export const VINTAGE_SUMMER_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>
|
|
|
23
25
|
icon: "🚗",
|
|
24
26
|
imageUrl:
|
|
25
27
|
"https://images.unsplash.com/photo-1517677208171-0bc6725a3e60?w=800",
|
|
26
|
-
aiPrompt:
|
|
27
|
-
"
|
|
28
|
+
aiPrompt: createPhotorealisticPrompt(
|
|
29
|
+
"a couple driving cherry red 1950s vintage convertible along scenic coastal road, woman wearing silk headscarf and cat-eye sunglasses, man in casual summer shirt with windswept hair, both facing camera with ecstatic carefree smiles, wicker picnic basket in back seat, blue ocean and cliffs in background",
|
|
30
|
+
"bright sunny coastal lighting with cinematic carefree atmosphere"
|
|
31
|
+
),
|
|
28
32
|
storyTemplate: createStoryTemplate(
|
|
29
33
|
"drive towards the horizon in classic style",
|
|
30
34
|
"The road is open, the sun is shining, and they have each other. A journey that proves the best destination is wherever they're together.",
|
|
@@ -37,8 +41,10 @@ export const VINTAGE_SUMMER_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>
|
|
|
37
41
|
icon: "🏖️",
|
|
38
42
|
imageUrl:
|
|
39
43
|
"https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=800",
|
|
40
|
-
aiPrompt:
|
|
41
|
-
"
|
|
44
|
+
aiPrompt: createPhotorealisticPrompt(
|
|
45
|
+
"a couple on sunny 1950s beach sitting under large red-and-white striped umbrella, both facing camera with pure happy smiles, man in vintage high-waisted swim trunks, woman in retro one-piece swimsuit with headband, holding vintage glass soda bottles, blue ocean waves and soft golden sand in background",
|
|
46
|
+
"warm golden summer sunlight with nostalgic beach atmosphere"
|
|
47
|
+
),
|
|
42
48
|
storyTemplate: createStoryTemplate(
|
|
43
49
|
"relive the golden age of summer holidays",
|
|
44
50
|
"Salty skin, sandy toes, and a love as warm as the summer sun. They've captured the essence of a perfect, timeless afternoon.",
|
|
@@ -51,8 +57,10 @@ export const VINTAGE_SUMMER_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>
|
|
|
51
57
|
icon: "🍿",
|
|
52
58
|
imageUrl:
|
|
53
59
|
"https://images.unsplash.com/photo-1485846234645-a62644f84728?w=800",
|
|
54
|
-
aiPrompt:
|
|
55
|
-
"
|
|
60
|
+
aiPrompt: createPhotorealisticPrompt(
|
|
61
|
+
"a couple in vintage turquoise car at drive-in theater at night, sharing large bucket of buttery popcorn, both facing camera with romantic smiles from front seat, large glowing movie screen visible through windshield, starry sky and rows of other vintage cars with speaker posts in background",
|
|
62
|
+
"warm romantic dashboard glow with cozy nostalgic night atmosphere"
|
|
63
|
+
),
|
|
56
64
|
storyTemplate: createStoryTemplate(
|
|
57
65
|
"share a movie and a moment under the midnight sky",
|
|
58
66
|
"The real stars aren't on the silver screen or in the sky; they're right here in the front seat. A night of old-school romance.",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Scenario, ScenarioId } from "../../domain/Scenario";
|
|
2
|
-
import { createStoryTemplate } from "../utils/scenario-utils";
|
|
2
|
+
import { createPhotorealisticPrompt, createStoryTemplate } from "../utils/scenario-utils";
|
|
3
3
|
|
|
4
4
|
export const WELLNESS_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>[] = [
|
|
5
5
|
{
|
|
@@ -8,8 +8,10 @@ export const WELLNESS_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>[] = [
|
|
|
8
8
|
description: "Balance and harmony",
|
|
9
9
|
icon: "🧘",
|
|
10
10
|
imageUrl: "https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?w=800",
|
|
11
|
-
aiPrompt:
|
|
12
|
-
"
|
|
11
|
+
aiPrompt: createPhotorealisticPrompt(
|
|
12
|
+
"a couple in high-end yoga studio, both facing camera with serene peaceful smiles while holding graceful tree pose side-by-side, wearing matching stylish athletic wear in earth tones, minimalist studio with large windows and natural wood floors in background",
|
|
13
|
+
"soft natural window lighting with calm zen atmosphere"
|
|
14
|
+
),
|
|
13
15
|
storyTemplate: createStoryTemplate(
|
|
14
16
|
"find their inner peace together",
|
|
15
17
|
"Breathing in sync, finding balance not just on the mat, but in every part of their shared life.",
|
|
@@ -22,8 +24,10 @@ export const WELLNESS_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>[] = [
|
|
|
22
24
|
icon: "🏃",
|
|
23
25
|
imageUrl:
|
|
24
26
|
"https://images.unsplash.com/photo-1476480862126-209bfaa8edc8?w=800",
|
|
25
|
-
aiPrompt:
|
|
26
|
-
"
|
|
27
|
+
aiPrompt: createPhotorealisticPrompt(
|
|
28
|
+
"a couple running together on scenic park trail, both facing camera with energetic healthy smiles, wearing professional running gear with fitness watches, morning mist and golden sun rays streaming through tree canopy in background",
|
|
29
|
+
"golden morning light with misty energetic outdoor atmosphere"
|
|
30
|
+
),
|
|
27
31
|
storyTemplate: createStoryTemplate(
|
|
28
32
|
"push their limits together",
|
|
29
33
|
"Step by step, mile after mile. They are each other's strongest motivation and greatest support.",
|
|
@@ -36,8 +40,10 @@ export const WELLNESS_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>[] = [
|
|
|
36
40
|
icon: "🏊",
|
|
37
41
|
imageUrl:
|
|
38
42
|
"https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=800",
|
|
39
|
-
aiPrompt:
|
|
40
|
-
"
|
|
43
|
+
aiPrompt: createPhotorealisticPrompt(
|
|
44
|
+
"a couple at infinity pool edge, both facing camera with joyful refreshed smiles, halfway submerged in crystal blue water, man in sleek swim trunks, woman in elegant one-piece swimsuit with goggles on head, luxury resort with ocean sunset visible over infinity edge in background",
|
|
45
|
+
"warm golden sunset lighting with refreshing resort atmosphere"
|
|
46
|
+
),
|
|
41
47
|
storyTemplate: createStoryTemplate(
|
|
42
48
|
"dive into health together",
|
|
43
49
|
"In the water, they move as one. A refreshing way to stay strong and connected in their fitness journey.",
|
|
@@ -49,8 +55,10 @@ export const WELLNESS_SCENARIOS: Omit<Scenario, 'outputType' | 'category'>[] = [
|
|
|
49
55
|
description: "Fueling love and health",
|
|
50
56
|
icon: "🥗",
|
|
51
57
|
imageUrl: "https://images.unsplash.com/photo-1529156069898-49953e39b3ac?w=800",
|
|
52
|
-
aiPrompt:
|
|
53
|
-
"
|
|
58
|
+
aiPrompt: createPhotorealisticPrompt(
|
|
59
|
+
"a couple in bright modern white kitchen, both facing camera with warm happy smiles while preparing colorful fresh salad together, wearing casual stylish aprons, wooden cutting board with vibrant organic vegetables like tomatoes peppers and greens visible on marble counter",
|
|
60
|
+
"bright natural kitchen lighting with vibrant healthy atmosphere"
|
|
61
|
+
),
|
|
54
62
|
storyTemplate: createStoryTemplate(
|
|
55
63
|
"nourish their bodies and souls",
|
|
56
64
|
"They say you are what you eat. They choose to be healthy, vibrant, and deeply in love.",
|