Improve the landing page
This commit is contained in:
@@ -78,7 +78,12 @@ export const PublicHeader = forwardRef<PublicHeaderRef, PublicHeaderProps>(({
|
|||||||
const [activeSection, setActiveSection] = useState<string>('');
|
const [activeSection, setActiveSection] = useState<string>('');
|
||||||
|
|
||||||
// Default navigation items
|
// Default navigation items
|
||||||
const defaultNavItems: Array<{id: string; label: string; href: string; external?: boolean}> = [];
|
const defaultNavItems: Array<{id: string; label: string; href: string; external?: boolean}> = [
|
||||||
|
{ id: 'home', label: t('common:nav.home', 'Inicio'), href: '/' },
|
||||||
|
{ id: 'features', label: t('common:nav.features', 'Funcionalidades'), href: '/features' },
|
||||||
|
{ id: 'about', label: t('common:nav.about', 'Nosotros'), href: '/about' },
|
||||||
|
{ id: 'contact', label: t('common:nav.contact', 'Contacto'), href: '/help/support' }
|
||||||
|
];
|
||||||
|
|
||||||
const navItems = navigationItems.length > 0 ? navigationItems : defaultNavItems;
|
const navItems = navigationItems.length > 0 ? navigationItems : defaultNavItems;
|
||||||
|
|
||||||
|
|||||||
@@ -417,6 +417,16 @@
|
|||||||
"start_free": "Start Free",
|
"start_free": "Start Free",
|
||||||
"register": "Sign Up",
|
"register": "Sign Up",
|
||||||
"language": "Language",
|
"language": "Language",
|
||||||
"open_menu": "Open navigation menu"
|
"open_menu": "Open navigation menu",
|
||||||
|
"theme": "Theme",
|
||||||
|
"skip_to_content": "Skip to main content",
|
||||||
|
"close_menu": "Close menu",
|
||||||
|
"mobile_menu": "Mobile navigation menu"
|
||||||
|
},
|
||||||
|
"nav": {
|
||||||
|
"home": "Home",
|
||||||
|
"features": "Features",
|
||||||
|
"about": "About",
|
||||||
|
"contact": "Contact"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
233
frontend/src/locales/en/features.json
Normal file
233
frontend/src/locales/en/features.json
Normal file
@@ -0,0 +1,233 @@
|
|||||||
|
{
|
||||||
|
"hero": {
|
||||||
|
"title": "How Bakery-AI Works For You Every Day",
|
||||||
|
"subtitle": "All features explained in simple language for bakery owners"
|
||||||
|
},
|
||||||
|
"automatic": {
|
||||||
|
"badge": "The Star Feature",
|
||||||
|
"title": "Your Personal Assistant That Never Sleeps",
|
||||||
|
"intro": "Imagine hiring a super organized assistant who arrives at 5:30 AM (before you) and does all this AUTOMATICALLY:",
|
||||||
|
"step1": {
|
||||||
|
"title": "Reviews Your Entire Inventory",
|
||||||
|
"item1": "Counts every kilo of flour, every liter of milk",
|
||||||
|
"item2": "Checks expiration dates",
|
||||||
|
"item3": "Sees what's arriving today from suppliers"
|
||||||
|
},
|
||||||
|
"step2": {
|
||||||
|
"title": "Predicts Today's Sales",
|
||||||
|
"item1": "Analyzes the day (rainy Monday, local holiday, school closed)",
|
||||||
|
"item2": "Compares with similar past days",
|
||||||
|
"item3": "Tells you: \"Today you'll sell 80 croissants, 120 loaves, 50 muffins\""
|
||||||
|
},
|
||||||
|
"step3": {
|
||||||
|
"title": "Plans What To Do",
|
||||||
|
"item1": "Calculates exactly how much to bake",
|
||||||
|
"item2": "Gives you a ready-to-execute list",
|
||||||
|
"item3": "\"Make 80 croissants (not 100), use 5kg butter, 3kg flour...\""
|
||||||
|
},
|
||||||
|
"step4": {
|
||||||
|
"title": "Manages Inventory Intelligently",
|
||||||
|
"projection_title": "Projects 7 days ahead:",
|
||||||
|
"day1": "Today: 50kg flour",
|
||||||
|
"day2": "Tomorrow: 42kg",
|
||||||
|
"day3": "Day after: 30kg",
|
||||||
|
"day4": "Day 4: 15kg",
|
||||||
|
"day5": "Day 5: You'd run out of flour",
|
||||||
|
"solution_title": "AUTOMATIC SOLUTION:",
|
||||||
|
"solution": "\"Order 50kg today, arrives in 3 days, problem solved\""
|
||||||
|
},
|
||||||
|
"step5": {
|
||||||
|
"title": "Creates Supplier Orders",
|
||||||
|
"item1": "Knows Supplier A takes 3 days, Supplier B takes 5",
|
||||||
|
"item2": "Calculates when to order for just-in-time arrival",
|
||||||
|
"item3": "Prepares orders ready to approve with 1 click"
|
||||||
|
},
|
||||||
|
"step6": {
|
||||||
|
"title": "Prevents Waste",
|
||||||
|
"perishables": "Perishable ingredients (milk, cream, eggs):",
|
||||||
|
"item1": "\"You have milk expiring in 5 days\"",
|
||||||
|
"item2": "\"You'll only use 15L in 5 days\"",
|
||||||
|
"item3": "\"Don't order more than 15L, it will be wasted\""
|
||||||
|
},
|
||||||
|
"result": {
|
||||||
|
"title": "At 6:00 AM you receive an email:",
|
||||||
|
"item1": "Day's forecast completed",
|
||||||
|
"item2": "Production plan ready",
|
||||||
|
"item3": "3 orders created (approve with 1 click)",
|
||||||
|
"item4": "Alert: \"Milk expires in 2 days, use it first\""
|
||||||
|
},
|
||||||
|
"eliminates": {
|
||||||
|
"title": "What it ELIMINATES from your routine:",
|
||||||
|
"item1": "Guessing how much to make",
|
||||||
|
"item2": "Manually counting inventory",
|
||||||
|
"item3": "Calculating when to order from suppliers",
|
||||||
|
"item4": "Remembering expiration dates",
|
||||||
|
"item5": "Worrying about running out of stock",
|
||||||
|
"item6": "Wasting expired ingredients"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"local": {
|
||||||
|
"badge": "Your Competitive Advantage",
|
||||||
|
"title": "Your Bakery Is Unique. Your AI Too.",
|
||||||
|
"intro": "Generic AIs know it's Monday. YOURS knows that:",
|
||||||
|
"schools": {
|
||||||
|
"title": "Nearby Schools",
|
||||||
|
"item1": "\"CEIP San José is 200m away\"",
|
||||||
|
"item2": "\"In August sales drop 40% (school vacation)\"",
|
||||||
|
"item3": "\"Mondays at 8:30 AM peak (parents after drop-off)\""
|
||||||
|
},
|
||||||
|
"offices": {
|
||||||
|
"title": "Offices and Businesses",
|
||||||
|
"item1": "\"Office building 150m away (250 workers)\"",
|
||||||
|
"item2": "\"Fridays sell less at lunch (remote work)\"",
|
||||||
|
"item3": "\"Rush hour: 1:00-2:00 PM (sandwiches)\""
|
||||||
|
},
|
||||||
|
"gyms": {
|
||||||
|
"title": "Sports Centers",
|
||||||
|
"item1": "\"Gym 300m away\"",
|
||||||
|
"item2": "\"Higher sales of healthy products (whole wheat bread, bars)\"",
|
||||||
|
"item3": "\"Peak at 7:00 AM and 7:00 PM\""
|
||||||
|
},
|
||||||
|
"competition": {
|
||||||
|
"title": "Your Competition",
|
||||||
|
"item1": "\"Another bakery opened 2 months ago 500m away\"",
|
||||||
|
"item2": "\"Impact: -15% in basic bread sales\"",
|
||||||
|
"item3": "\"Opportunity: Differentiate with specialties\""
|
||||||
|
},
|
||||||
|
"weather": {
|
||||||
|
"title": "Your Area's Weather",
|
||||||
|
"item1": "\"AEMET data from your zip code\"",
|
||||||
|
"item2": "\"Rain → -20% croissants, +10% sandwich bread\"",
|
||||||
|
"item3": "\"Heat → +30% fresh products\""
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "Local Events",
|
||||||
|
"item1": "\"Friday market at Plaza Mayor (500m)\"",
|
||||||
|
"item2": "\"Neighborhood festival next week\"",
|
||||||
|
"item3": "\"Important match → pre-event sales spike\""
|
||||||
|
},
|
||||||
|
"why_matters": {
|
||||||
|
"title": "Why it matters:",
|
||||||
|
"generic": "Generic AI:",
|
||||||
|
"generic_example": "\"It's Monday → sell X\"",
|
||||||
|
"yours": "YOUR AI:",
|
||||||
|
"yours_example": "\"It's Monday, raining, school closed (local holiday), market cancelled → sell Y\""
|
||||||
|
},
|
||||||
|
"accuracy": "Accuracy: 92% (vs 60-70% for generic systems)"
|
||||||
|
},
|
||||||
|
"forecasting": {
|
||||||
|
"title": "Knows What You'll Sell Tomorrow (92% Accuracy)",
|
||||||
|
"subtitle": "It's not magic. It's math with your data.",
|
||||||
|
"learns_from": {
|
||||||
|
"title": "The AI learns from:",
|
||||||
|
"item1": "Your past sales (6-12 months)",
|
||||||
|
"item2": "Day of the week (Monday ≠ Saturday)",
|
||||||
|
"item3": "Seasonality (August ≠ December)",
|
||||||
|
"item4": "Local weather (rain, heat, cold)",
|
||||||
|
"item5": "Events and holidays",
|
||||||
|
"item6": "Your unique environment"
|
||||||
|
},
|
||||||
|
"result": {
|
||||||
|
"title": "Result:",
|
||||||
|
"intro": "Tomorrow (Tuesday March 15) you'll sell:",
|
||||||
|
"croissants": "78-82 croissants",
|
||||||
|
"croissants_avg": "(80 ±2)",
|
||||||
|
"loaves": "115-125 loaves",
|
||||||
|
"loaves_avg": "(120 ±5)",
|
||||||
|
"muffins": "45-50 muffins",
|
||||||
|
"muffins_avg": "(48 ±2)"
|
||||||
|
},
|
||||||
|
"confidence": "Confidence: 92% of the time it's accurate within the range"
|
||||||
|
},
|
||||||
|
"waste": {
|
||||||
|
"title": "Less Bread in the Trash, More Money in Your Pocket",
|
||||||
|
"before": {
|
||||||
|
"title": "Typical bakery example:",
|
||||||
|
"item1": "You make 50 extra loaves each day \"just in case\"",
|
||||||
|
"item2": "Price: €2/loaf",
|
||||||
|
"daily": "Waste: 50 × €2 = €100/day",
|
||||||
|
"monthly": "Per month: €100 × 30 = €3,000 lost",
|
||||||
|
"yearly": "Per year: €36,000 thrown away"
|
||||||
|
},
|
||||||
|
"after": {
|
||||||
|
"title": "With Bakery-AI:",
|
||||||
|
"item1": "Accurate prediction → Make 5-10 extra loaves (safety buffer)",
|
||||||
|
"item2": "Waste: 5 × €2 = €10/day",
|
||||||
|
"monthly": "Per month: €300",
|
||||||
|
"savings": "SAVINGS: €2,700/month (€32,400/year)",
|
||||||
|
"roi": "You recover the investment in week 1."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"sustainability": {
|
||||||
|
"badge": "System Feature",
|
||||||
|
"title": "Help the Planet, Access Economic Aid",
|
||||||
|
"un_sdg": {
|
||||||
|
"title": "Automatic UN SDG 12.3 Compliance",
|
||||||
|
"description": "Without doing anything extra, you comply with United Nations Sustainable Development Goal 12.3 (food waste reduction).",
|
||||||
|
"benefit": "You receive automatic certification → Credibility with customers"
|
||||||
|
},
|
||||||
|
"grants": {
|
||||||
|
"title": "Eligible for 5 Grant Programs:",
|
||||||
|
"pima": {
|
||||||
|
"title": "PIMA Adapta (MITECO)",
|
||||||
|
"amount": "Up to €50,000",
|
||||||
|
"description": "Circular economy projects. Your system = certified waste reduction"
|
||||||
|
},
|
||||||
|
"tourism": {
|
||||||
|
"title": "Tourism Sustainability Plans",
|
||||||
|
"amount": "Up to €30,000",
|
||||||
|
"description": "For bakeries in tourist areas"
|
||||||
|
},
|
||||||
|
"moves": {
|
||||||
|
"title": "MOVES Circular (Businesses)",
|
||||||
|
"amount": "Up to €20,000",
|
||||||
|
"description": "Sustainable digital transformation"
|
||||||
|
},
|
||||||
|
"regional": {
|
||||||
|
"title": "Regional Circular Economy Grants",
|
||||||
|
"amount": "Variable",
|
||||||
|
"description": "Depends on your autonomous region"
|
||||||
|
},
|
||||||
|
"tax": {
|
||||||
|
"title": "Tax Benefits",
|
||||||
|
"amount": "Up to 25% reduction",
|
||||||
|
"description": "Deduction for sustainability investment"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"how_it_works": {
|
||||||
|
"title": "How it works:",
|
||||||
|
"item1": "Bakery-AI generates automatic reports",
|
||||||
|
"item2": "Waste reduction metrics (kg CO₂, liters of water)",
|
||||||
|
"item3": "Documentation ready for applications",
|
||||||
|
"item4": "We help you with the process"
|
||||||
|
},
|
||||||
|
"impact": {
|
||||||
|
"co2": "reduced per month (equivalent to 3 trees planted)",
|
||||||
|
"water": "water saved per year",
|
||||||
|
"certification": "Certified",
|
||||||
|
"certification_desc": "UN SDG 12.3"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"business_models": {
|
||||||
|
"title": "For Any Business Model",
|
||||||
|
"subtitle": "No matter how you work, it works for you",
|
||||||
|
"local": {
|
||||||
|
"title": "Local Production Bakery",
|
||||||
|
"description": "You bake and sell in the same location",
|
||||||
|
"benefit1": "AI optimizes daily production",
|
||||||
|
"benefit2": "Manages single-point inventory"
|
||||||
|
},
|
||||||
|
"central": {
|
||||||
|
"title": "Central Workshop + Sales Points",
|
||||||
|
"description": "You produce in a workshop, distribute to stores",
|
||||||
|
"benefit1": "AI predicts demand per sales point",
|
||||||
|
"benefit2": "Optimizes distribution and transport",
|
||||||
|
"benefit3": "Manages central + point inventory"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"cta": {
|
||||||
|
"title": "See Bakery-AI in Action",
|
||||||
|
"subtitle": "Request a personalized demo for your bakery",
|
||||||
|
"button": "Request Demo"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,337 +1,273 @@
|
|||||||
{
|
{
|
||||||
"navigation": {
|
|
||||||
"features": "Features",
|
|
||||||
"benefits": "Benefits",
|
|
||||||
"pricing": "Pricing",
|
|
||||||
"faq": "FAQ"
|
|
||||||
},
|
|
||||||
"hero": {
|
"hero": {
|
||||||
"badge": "Advanced AI for Bakeries",
|
"scarcity_badge": "🔥 Only 12 spots left out of 20 in pilot program",
|
||||||
"badge_sustainability": "Food Waste Reduction",
|
"badge": "Advanced AI for Modern Bakeries",
|
||||||
"title_line1": "Increase Profits,",
|
"title_line1": "Stop Losing €2,000 Per Month",
|
||||||
"title_line2": "Reduce Waste",
|
"title_line2": "on Bread Nobody Buys",
|
||||||
"subtitle": "AI platform for bakeries that want to produce exactly what they'll sell. Reduce food waste, improve margins, and save time on planning. Your data is 100% yours.",
|
"subtitle": "AI that predicts exactly what you'll sell tomorrow. Produce just enough. Reduce waste. Increase profits. <strong>3 months free for the first 20 bakeries</strong>.",
|
||||||
"pilot_banner": {
|
"cta_primary": "Request Pilot Spot",
|
||||||
"title": "Pilot Launch!",
|
"cta_secondary": "See How It Works (2 min)",
|
||||||
"offer": "3 MONTHS FREE",
|
"trust": {
|
||||||
"description": "for early pilot participants"
|
"no_cc": "3 months free",
|
||||||
|
"card": "Card required",
|
||||||
|
"quick": "Ready in 10 minutes",
|
||||||
|
"spanish": "Support in Spanish"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"problems": {
|
||||||
|
"title": "The Problem We Solve",
|
||||||
|
"subtitle": "If you own a bakery, you know exactly what we're talking about",
|
||||||
|
"problem1": {
|
||||||
|
"title": "You throw away 50 loaves a day \"just in case\"",
|
||||||
|
"description": "50 loaves × €2 = €100/day = €3,000/month in the trash. And that's just bread."
|
||||||
},
|
},
|
||||||
"cta_primary": "Start Free Now",
|
"problem2": {
|
||||||
"cta_secondary": "Watch Demo",
|
"title": "Customers leave empty-handed",
|
||||||
"features": {
|
"description": "\"You're out of croissants at 2 PM\" = lost sales + frustrated customers."
|
||||||
"card_required": "Card required • 3 months free",
|
},
|
||||||
"no_credit_card": "Card required • 3 months free",
|
"problem3": {
|
||||||
"quick_setup": "Ready in minutes, not hours",
|
"title": "You plan \"by eye\" with Excel",
|
||||||
"support_24_7": "Personalized support in English"
|
"description": "Based on experience and gut feelings. It works... until it doesn't."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"solutions": {
|
||||||
|
"title": "The Solution",
|
||||||
|
"subtitle": "AI that knows YOUR bakery, YOUR neighborhood, YOUR customers",
|
||||||
|
"solution1": {
|
||||||
|
"title": "Predicts real demand (92% accuracy)",
|
||||||
|
"description": "Knows tomorrow is a rainy Monday, school closed, market cancelled → you'll sell 78 croissants (not 100)."
|
||||||
|
},
|
||||||
|
"solution2": {
|
||||||
|
"title": "Automatic system every morning",
|
||||||
|
"description": "5:30 AM: reviews inventory, predicts sales, plans production, creates orders. You arrive at 6:00 and everything's ready."
|
||||||
|
},
|
||||||
|
"solution3": {
|
||||||
|
"title": "Your data = your grants",
|
||||||
|
"description": "100% your data + certified waste reduction = access to €50,000 in European sustainability grants."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"pillars": {
|
||||||
|
"badge": "The 3 System Keys",
|
||||||
|
"title": "Why It Works For Your Bakery",
|
||||||
|
"subtitle": "It's not magic. It's math applied to YOUR reality.",
|
||||||
|
"pillar1": {
|
||||||
|
"title": "🎯 Predicts Demand with Your Area's Data",
|
||||||
|
"intro": "AI that knows your neighborhood, not just the calendar. Knows the nearby school closes in August, there's a market in your plaza on Fridays, and another bakery opened 500m away.",
|
||||||
|
"schools": {
|
||||||
|
"title": "Nearby Schools",
|
||||||
|
"item1": "\"CEIP San José is 200m away\"",
|
||||||
|
"item2": "\"In August sales drop 40% (school vacation)\"",
|
||||||
|
"item3": "\"Mondays at 8:30 AM peak (parents after drop-off)\""
|
||||||
|
},
|
||||||
|
"competition": {
|
||||||
|
"title": "Your Competition",
|
||||||
|
"item1": "\"Another bakery opened 2 months ago 500m away\"",
|
||||||
|
"item2": "\"Impact: -15% in basic bread sales\"",
|
||||||
|
"item3": "\"Opportunity: Differentiate with specialties\""
|
||||||
|
},
|
||||||
|
"weather": {
|
||||||
|
"title": "Your Area's Weather",
|
||||||
|
"item1": "\"AEMET data from your zip code\"",
|
||||||
|
"item2": "\"Rain → -20% croissants, +10% sandwich bread\"",
|
||||||
|
"item3": "\"Heat → +30% fresh products\""
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "Local Events",
|
||||||
|
"item1": "\"Friday market at Plaza Mayor (500m)\"",
|
||||||
|
"item2": "\"Neighborhood festival next week\"",
|
||||||
|
"item3": "\"Important match → pre-event sales spike\""
|
||||||
|
},
|
||||||
|
"accuracy": "Accuracy: 92% (vs 60-70% for generic systems)",
|
||||||
|
"cta": "See All Features"
|
||||||
|
},
|
||||||
|
"pillar2": {
|
||||||
|
"title": "🤖 Automatic System Every Morning",
|
||||||
|
"intro": "Imagine hiring a super organized assistant who arrives at 5:30 AM (before you) and does all this AUTOMATICALLY:",
|
||||||
|
"step1": {
|
||||||
|
"title": "5:30 AM - Reviews Your Entire Inventory",
|
||||||
|
"item1": "Counts every kilo of flour, every liter of milk",
|
||||||
|
"item2": "Checks expiration dates",
|
||||||
|
"item3": "Sees what's arriving today from suppliers"
|
||||||
|
},
|
||||||
|
"step2": {
|
||||||
|
"title": "5:35 AM - Predicts Today's Sales",
|
||||||
|
"item1": "Analyzes the day (rainy Monday, local holiday, school closed)",
|
||||||
|
"item2": "Compares with similar past days",
|
||||||
|
"item3": "Tells you: \"Today you'll sell 80 croissants, 120 loaves, 50 muffins\""
|
||||||
|
},
|
||||||
|
"step3": {
|
||||||
|
"title": "5:40 AM - Plans What To Do",
|
||||||
|
"item1": "Calculates exactly how much to bake",
|
||||||
|
"item2": "Gives you a ready-to-execute list",
|
||||||
|
"item3": "\"Make 80 croissants (not 100), use 5kg butter, 3kg flour...\""
|
||||||
|
},
|
||||||
|
"step4": {
|
||||||
|
"title": "5:45 AM - Manages Inventory Intelligently",
|
||||||
|
"projection_title": "Projects 7 days ahead:",
|
||||||
|
"day1": "Today: 50kg flour",
|
||||||
|
"day2": "Tomorrow: 42kg",
|
||||||
|
"day3": "Day after: 30kg",
|
||||||
|
"day4": "Day 4: 15kg",
|
||||||
|
"day5": "Day 5: You'd run out of flour",
|
||||||
|
"solution_title": "AUTOMATIC SOLUTION:",
|
||||||
|
"solution": "\"Order 50kg today, arrives in 3 days, problem solved\""
|
||||||
|
},
|
||||||
|
"step5": {
|
||||||
|
"title": "5:50 AM - Creates Supplier Orders",
|
||||||
|
"item1": "Knows Supplier A takes 3 days, Supplier B takes 5",
|
||||||
|
"item2": "Calculates when to order for just-in-time arrival",
|
||||||
|
"item3": "Prepares orders ready to approve with 1 click"
|
||||||
|
},
|
||||||
|
"result": {
|
||||||
|
"title": "6:00 AM - You Receive an Email",
|
||||||
|
"item1": "Day's forecast completed ✅",
|
||||||
|
"item2": "Production plan ready ✅",
|
||||||
|
"item3": "3 orders created (approve with 1 click) ✅",
|
||||||
|
"item4": "Alert: \"Milk expires in 2 days, use it first\" ⚠️"
|
||||||
|
},
|
||||||
|
"eliminates": {
|
||||||
|
"title": "What it ELIMINATES from your routine:",
|
||||||
|
"item1": "❌ Guessing how much to make",
|
||||||
|
"item2": "❌ Manually counting inventory",
|
||||||
|
"item3": "❌ Calculating when to order from suppliers",
|
||||||
|
"item4": "❌ Remembering expiration dates",
|
||||||
|
"item5": "❌ Worrying about running out of stock",
|
||||||
|
"item6": "❌ Wasting expired ingredients"
|
||||||
|
},
|
||||||
|
"cta": "See All Features"
|
||||||
|
},
|
||||||
|
"pillar3": {
|
||||||
|
"title": "📊 Your Data, Your Grants",
|
||||||
|
"intro": "Your operational data is 100% yours. Never shared. Never sold. And it opens doors to European funding.",
|
||||||
|
"data_ownership": {
|
||||||
|
"title": "100% Data Ownership",
|
||||||
|
"item1": "Your sales, inventory, suppliers, recipes: all yours",
|
||||||
|
"item2": "GDPR compliance guaranteed (Spanish company)",
|
||||||
|
"item3": "Export your data whenever, wherever you want"
|
||||||
|
},
|
||||||
|
"sustainability": {
|
||||||
|
"title": "Certified Waste Reduction",
|
||||||
|
"intro": "Without doing anything extra, you comply with UN Sustainable Development Goal 12.3 (food waste reduction).",
|
||||||
|
"item1": "You receive automatic certification",
|
||||||
|
"item2": "Environmental impact metrics (kg CO₂, liters of water)",
|
||||||
|
"item3": "Reports ready for grant applications"
|
||||||
|
},
|
||||||
|
"grants": {
|
||||||
|
"title": "Eligible for €50,000 in European Grants",
|
||||||
|
"pima": "PIMA Adapta (MITECO) - Up to €50,000",
|
||||||
|
"tourism": "Tourism Sustainability Plans - Up to €30,000",
|
||||||
|
"moves": "MOVES Circular (Businesses) - Up to €20,000",
|
||||||
|
"regional": "Regional Circular Economy Grants - Variable",
|
||||||
|
"tax": "Tax Benefits - Up to 25% reduction",
|
||||||
|
"help": "We help you with the application process"
|
||||||
|
},
|
||||||
|
"impact": {
|
||||||
|
"co2": "reduced per month",
|
||||||
|
"co2_equivalent": "(equivalent to 3 trees planted)",
|
||||||
|
"water": "water saved per year",
|
||||||
|
"certification": "Certified UN SDG 12.3"
|
||||||
|
},
|
||||||
|
"cta": "See All Features"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"how_it_works": {
|
||||||
|
"title": "How to Get Started",
|
||||||
|
"subtitle": "3 steps. 10 minutes. Done.",
|
||||||
|
"step1": {
|
||||||
|
"title": "Upload 6-12 months of sales data",
|
||||||
|
"description": "More months = more accurate predictions. If you only have 6 months, it works fine, but improves over time.",
|
||||||
|
"time": "5 minutes"
|
||||||
|
},
|
||||||
|
"step2": {
|
||||||
|
"title": "AI learns from YOUR bakery",
|
||||||
|
"description": "Analyzes your patterns, products, seasonality. You don't need to configure anything.",
|
||||||
|
"time": "Automatic"
|
||||||
|
},
|
||||||
|
"step3": {
|
||||||
|
"title": "Start receiving predictions",
|
||||||
|
"description": "Every morning at 6:00 AM: day's forecast, production plan, orders to approve.",
|
||||||
|
"time": "Next day"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pilot": {
|
"pilot": {
|
||||||
"banner": {
|
"badge": "Pilot Program - Only 20 Spots",
|
||||||
"active": "Pilot Program Activated",
|
|
||||||
"trial_applied": "3 months free automatically applied",
|
|
||||||
"coupon_code": "Code",
|
|
||||||
"description": "You've been selected for our exclusive pilot program"
|
|
||||||
},
|
|
||||||
"badge": "Pilot Program - Limited Spots",
|
|
||||||
"title": "Looking for 20 Pioneer Bakeries",
|
"title": "Looking for 20 Pioneer Bakeries",
|
||||||
"subtitle": "We're selecting the first 20 bakeries to join our exclusive pilot program. In exchange for your feedback, you get <strong>3 months free + lifetime preferential pricing</strong>.",
|
"subtitle": "It's not for everyone. We're selecting the first 20 bakeries to join our exclusive pilot program.",
|
||||||
"benefits": {
|
|
||||||
"founders_beta": {
|
|
||||||
"title": "Founders Beta",
|
|
||||||
"description": "Lifetime access with 20% discount"
|
|
||||||
},
|
|
||||||
"influence_product": {
|
|
||||||
"title": "Influence the Product",
|
|
||||||
"description": "Your needs shape the platform"
|
|
||||||
},
|
|
||||||
"premium_support": {
|
|
||||||
"title": "Premium Support",
|
|
||||||
"description": "Direct attention from founding team"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"features": {
|
|
||||||
"title_main": "Fight Food Waste",
|
|
||||||
"title_accent": "with Artificial Intelligence",
|
|
||||||
"badge": "Cutting-Edge AI Technology",
|
|
||||||
"subtitle": "High-tech system that uses advanced AI algorithms to optimize your production, reduce food waste, and keep your data 100% secure and under your control.",
|
|
||||||
"ai_prediction": {
|
|
||||||
"title": "Advanced Prediction AI",
|
|
||||||
"description": "State-of-the-art machine learning algorithms analyze historical patterns, weather, events, and trends to predict demand with surgical precision.",
|
|
||||||
"features": {
|
|
||||||
"accuracy": "92% accuracy in predictions",
|
|
||||||
"learning": "Continuous and adaptive learning",
|
|
||||||
"realtime": "Real-time predictive analytics"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"waste_reduction": {
|
|
||||||
"title": "Waste Reduction",
|
|
||||||
"description": "Contribute to the environment and reduce costs by eliminating up to 35% of food waste through optimized and intelligent production.",
|
|
||||||
"features": {
|
|
||||||
"reduction": "Up to 35% less waste",
|
|
||||||
"savings": "Average savings of €800/month",
|
|
||||||
"eligible": "Eligible for EU grants"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"data_ownership": {
|
|
||||||
"title": "Your Data, Your Property",
|
|
||||||
"description": "Total privacy and security. Your operational data, suppliers, and analytics remain 100% under your control. Never shared, never sold.",
|
|
||||||
"features": {
|
|
||||||
"ownership": "100% data ownership",
|
|
||||||
"privacy": "Full privacy control",
|
|
||||||
"gdpr": "Guaranteed GDPR compliance"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"smart_inventory": {
|
|
||||||
"title": "Smart Inventory",
|
|
||||||
"description": "Automatic stock control with predictive alerts, automated purchase orders, and real-time raw material cost optimization.",
|
|
||||||
"features": {
|
|
||||||
"alerts": "Automatic low stock alerts",
|
|
||||||
"orders": "Automated purchase orders",
|
|
||||||
"optimization": "Raw material cost optimization"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"production_planning": {
|
|
||||||
"title": "Production Planning",
|
|
||||||
"description": "Automatically schedules daily production based on AI predictions, optimizes schedules, resources, and maximizes your ovens' efficiency.",
|
|
||||||
"features": {
|
|
||||||
"scheduling": "Automatic baking scheduling",
|
|
||||||
"oven": "Oven usage optimization",
|
|
||||||
"staff": "Staff and shift management"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"advanced_analytics": {
|
|
||||||
"title": "Advanced Analytics",
|
|
||||||
"description": "Real-time dashboards with key business metrics, product profitability analysis, and customizable reports for data-driven decisions.",
|
|
||||||
"features": {
|
|
||||||
"realtime": "Real-time dashboards",
|
|
||||||
"profitability": "Product profitability analysis",
|
|
||||||
"reports": "Customizable reports"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"pos_integration": {
|
|
||||||
"title": "Integrated POS",
|
|
||||||
"description": "Complete and easy-to-use sales system"
|
|
||||||
},
|
|
||||||
"quality_control": {
|
|
||||||
"title": "Quality Control",
|
|
||||||
"description": "Complete traceability and HACCP management"
|
|
||||||
},
|
|
||||||
"automation": {
|
|
||||||
"title": "Automation",
|
|
||||||
"description": "Automatic processes that save time"
|
|
||||||
},
|
|
||||||
"cloud_based": {
|
|
||||||
"title": "Cloud-Based",
|
|
||||||
"description": "Access from anywhere, always up-to-date"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"benefits": {
|
|
||||||
"title": "The Problem We Solve",
|
|
||||||
"title_accent": "For Your Bakery",
|
|
||||||
"subtitle": "We know how frustrating it is to throw away products at the end of the day, or run out of stock when customers arrive. Bakery production is hard to optimize... until now.",
|
|
||||||
"problems": {
|
|
||||||
"waste": {
|
|
||||||
"title": "You waste 15-40% of production",
|
|
||||||
"description": "At the end of the day, you throw away unsold products. That's hundreds of euros in the trash every week."
|
|
||||||
},
|
|
||||||
"stockouts": {
|
|
||||||
"title": "You lose sales due to stockouts",
|
|
||||||
"description": "Customers come for their favorite bread and leave without buying because you ran out at 2 PM."
|
|
||||||
},
|
|
||||||
"manual": {
|
|
||||||
"title": "Excel, paper, and \"experience\"",
|
|
||||||
"description": "You plan based on intuition. It works... until it doesn't."
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"solutions": {
|
|
||||||
"exact_production": {
|
|
||||||
"title": "Produce exactly what you'll sell",
|
|
||||||
"description": "AI analyzes your sales history, weather, local events, and holidays to predict real demand."
|
|
||||||
},
|
|
||||||
"stock_availability": {
|
|
||||||
"title": "Always have stock of bestsellers",
|
|
||||||
"description": "The system alerts you which products will have higher demand each day, so you never run out."
|
|
||||||
},
|
|
||||||
"smart_automation": {
|
|
||||||
"title": "Smart automation + real data",
|
|
||||||
"description": "From production planning to inventory management. All based on math, not hunches."
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"value_proposition": {
|
|
||||||
"title": "The Goal: Save You Money From Month One",
|
|
||||||
"description": "We don't promise magic numbers because every bakery is different. What we DO promise is that if after 3 months you haven't reduced waste or improved margins, <strong>we'll help you optimize your business another way for free</strong>.",
|
|
||||||
"points": {
|
|
||||||
"waste": "Less waste = more profit",
|
|
||||||
"time": "Less time in Excel, more in your business",
|
|
||||||
"data": "Your data is always yours"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"risk_reversal": {
|
|
||||||
"title": "No Risk. No Strings Attached.",
|
|
||||||
"subtitle": "We're transparent: this is a pilot. We're building the best tool for bakeries, and we need your help.",
|
|
||||||
"what_you_get": {
|
"what_you_get": {
|
||||||
"title": "What You Get",
|
"title": "What You Get",
|
||||||
"free_trial": "<strong>3 completely free months</strong> to test all features",
|
"free_trial": "3 months completely free",
|
||||||
"lifetime_discount": "<strong>20% lifetime discount</strong> if you continue after the pilot",
|
"lifetime_discount": "20% lifetime discount if you continue",
|
||||||
"founder_support": "<strong>Direct support from founding team</strong> - we respond in hours, not days",
|
"vip_support": "Direct support from founding team",
|
||||||
"priority_features": "<strong>Your ideas implemented first</strong> - we build what you really need",
|
"influence": "Your ideas implemented first"
|
||||||
"cancel_anytime": "<strong>Cancel anytime</strong> without explanations or penalties"
|
|
||||||
},
|
},
|
||||||
"what_we_ask": {
|
"what_we_ask": {
|
||||||
"title": "What We Ask",
|
"title": "What We Ask",
|
||||||
"feedback": "<strong>Weekly honest feedback</strong> (15 min) about what works and what doesn't",
|
"feedback": "Honest weekly feedback (15 min)",
|
||||||
"patience": "<strong>Patience with bugs</strong> - we're in beta, there will be imperfections",
|
"patience": "Patience with bugs (we're in beta)",
|
||||||
"data": "<strong>Historical sales data</strong> (optional) to improve predictions",
|
"data": "Historical sales data (6-12 months)",
|
||||||
"communication": "<strong>Open communication</strong> - we want to know if you don't like something"
|
"communication": "Open communication"
|
||||||
},
|
},
|
||||||
"promise": "<strong>Promise:</strong> If after 3 months you feel we haven't helped you save money or reduce waste, we'll give you a free consulting session to optimize your bakery another way.",
|
"spots_left": "12 spots left out of 20",
|
||||||
"credibility": {
|
"cta": "Request Pilot Spot"
|
||||||
"title": "Why Trust Us?",
|
|
||||||
"subtitle": "We understand trying new technology is a risk. That's why we're completely transparent:",
|
|
||||||
"spanish": {
|
|
||||||
"title": "100% Spanish",
|
|
||||||
"description": "Registered company in Spain. Your data is protected by GDPR and never leaves the EU."
|
|
||||||
},
|
|
||||||
"technology": {
|
|
||||||
"title": "Proven Technology",
|
|
||||||
"description": "We use academically validated AI algorithms, specifically adapted for bakeries."
|
|
||||||
},
|
|
||||||
"team": {
|
|
||||||
"title": "Expert Founder",
|
|
||||||
"description": "Entrepreneur with over a decade of international experience in AI, digital transformation, and high-value technology projects across Europe, Asia, and America"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"faq": {
|
|
||||||
"title": "Frequently Asked Questions",
|
|
||||||
"subtitle": "Everything you need to know about Bakery AI",
|
|
||||||
"questions": {
|
|
||||||
"accuracy": {
|
|
||||||
"q": "How accurate is demand prediction?",
|
|
||||||
"a": "Our AI achieves 92% accuracy in demand predictions, analyzing over 50 variables including sales history, weather, local events, seasonality, and market trends. Accuracy continuously improves with more data from your bakery."
|
|
||||||
},
|
|
||||||
"implementation": {
|
|
||||||
"q": "How long does it take to implement the system?",
|
|
||||||
"a": "Initial setup takes only 5 minutes. Our team helps you migrate historical data in 24-48 hours. The AI starts generating useful predictions after one week of data, reaching maximum accuracy in 30 days."
|
|
||||||
},
|
|
||||||
"integration": {
|
|
||||||
"q": "Does it integrate with my current POS system?",
|
|
||||||
"a": "Yes, we integrate with over 50 popular POS systems in Spain. We also include our own POS optimized for bakeries. If you use a specific system, our technical team can create a custom integration."
|
|
||||||
},
|
|
||||||
"support": {
|
|
||||||
"q": "What technical support do you offer?",
|
|
||||||
"a": "We offer 24/7 support in English via chat, email, and phone. All our technicians are experts in bakery operations. We also include personalized onboarding and team training at no additional cost."
|
|
||||||
},
|
|
||||||
"security": {
|
|
||||||
"q": "Is my data safe?",
|
|
||||||
"a": "Absolutely. We use AES-256 encryption, EU servers, 100% GDPR compliance, and conduct quarterly security audits. Your data is never shared with third parties, and you have total control over your information."
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"business_models": {
|
|
||||||
"title": "Your Business Model, Our Technology",
|
|
||||||
"subtitle": "Whether you produce and sell in one location, or manage a central workshop with multiple points of sale, our AI adapts to your way of working",
|
|
||||||
"local_production": {
|
|
||||||
"title": "Local Production",
|
|
||||||
"subtitle": "Single point of sale and production",
|
|
||||||
"description": "Your bakery produces and sells in the same location. You need to optimize daily production, minimize waste, and maximize freshness in each batch.",
|
|
||||||
"features": {
|
|
||||||
"prediction": "<strong>Demand prediction</strong> for single location",
|
|
||||||
"inventory": "<strong>Inventory management</strong> simplified and direct",
|
|
||||||
"control": "<strong>Single control point</strong> - simple and efficient"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"central_workshop": {
|
|
||||||
"title": "Central Workshop + Points of Sale",
|
|
||||||
"subtitle": "Centralized production, multiple distribution",
|
|
||||||
"description": "You produce centrally and distribute to multiple points of sale. You need to coordinate production, logistics, and demand across locations to optimize each point.",
|
|
||||||
"features": {
|
|
||||||
"prediction": "<strong>Aggregated and per-point-of-sale</strong> individual prediction",
|
|
||||||
"distribution": "<strong>Distribution management</strong> coordinated multi-location",
|
|
||||||
"visibility": "<strong>Centralized visibility</strong> with granular control"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"same_ai": "The same powerful AI, adapted to your way of working"
|
|
||||||
},
|
},
|
||||||
"pricing": {
|
"pricing": {
|
||||||
"title": "Plans That Fit Your Business",
|
"badge": "Transparent Pricing",
|
||||||
"subtitle": "No hidden costs, no long commitments. Start free and scale as you grow.",
|
"title": "One Plan. No Surprises.",
|
||||||
"compare_link": "View complete feature comparison"
|
"subtitle": "3 months free for pilots. Then €99/month (or €79/month with lifetime discount if you were a pilot).",
|
||||||
},
|
"plan": {
|
||||||
"sustainability": {
|
"name": "Bakery-AI Complete",
|
||||||
"badge": "UN SDG 12.3 & EU Green Deal Aligned",
|
"pilot_price": "€0/month",
|
||||||
"title_main": "Not Just Reduce Waste",
|
"pilot_period": "First 3 months (pilot)",
|
||||||
"title_accent": "Prove It to the World",
|
"regular_price": "€99/month",
|
||||||
"subtitle": "The only AI platform with built-in UN SDG 12.3 compliance tracking. Reduce waste, save money, and qualify for EU sustainability grants—all with verifiable environmental impact metrics.",
|
"pilot_discount_price": "€79/month",
|
||||||
"metrics": {
|
"pilot_discount_note": "20% lifetime discount if you were a pilot",
|
||||||
"co2_avoided": "CO₂ Avoided Monthly",
|
|
||||||
"co2_equivalent": "Equivalent to 43 trees planted",
|
|
||||||
"water_saved": "Water Saved Monthly",
|
|
||||||
"water_equivalent": "Equivalent to 4,500 showers",
|
|
||||||
"grants_eligible": "Grant Programs Eligible",
|
|
||||||
"grants_value": "Up to €50,000 in funding"
|
|
||||||
},
|
|
||||||
"sdg": {
|
|
||||||
"title": "UN SDG 12.3 Compliance",
|
|
||||||
"subtitle": "Halve food waste by 2030",
|
|
||||||
"description": "Real-time tracking toward the UN Sustainable Development Goal 12.3 target. Our AI helps you achieve 50% waste reduction with verifiable, auditable data for grant applications and certifications.",
|
|
||||||
"progress_label": "Progress to Target",
|
|
||||||
"baseline": "Baseline",
|
|
||||||
"current": "Current",
|
|
||||||
"target": "Target 2030",
|
|
||||||
"features": {
|
"features": {
|
||||||
"tracking": "Automated waste baseline and progress tracking",
|
"prediction": "AI demand prediction",
|
||||||
"export": "One-click grant application report export",
|
"inventory": "Automatic inventory management",
|
||||||
"certification": "Certification-ready environmental impact data"
|
"production": "Production planning",
|
||||||
|
"orders": "Automatic order creation",
|
||||||
|
"analytics": "Advanced analytics and reports",
|
||||||
|
"sustainability": "Sustainability metrics (UN SDG 12.3)",
|
||||||
|
"grants": "Documentation for European grants",
|
||||||
|
"support": "Priority support in Spanish",
|
||||||
|
"data": "100% data ownership"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"grants": {
|
"guarantee": "Cancel anytime without explanations",
|
||||||
"life_circular_economy": "LIFE Programme - Circular Economy",
|
"cta": "Request Pilot Spot"
|
||||||
"life_circular_economy_req": "Requires 15% reduction",
|
},
|
||||||
"life_circular_economy_funding": "€73M available",
|
"faq": {
|
||||||
"horizon_europe_cluster_6": "Horizon Europe Cluster 6",
|
"badge": "Frequently Asked Questions",
|
||||||
"horizon_europe_cluster_6_req": "Requires 20% reduction",
|
"title": "What We're Always Asked",
|
||||||
"horizon_europe_cluster_6_funding": "€880M+ annually",
|
"subtitle": "Honest answers to real questions",
|
||||||
"fedima_sustainability_grant": "Fedima Sustainability Grant",
|
"q1": {
|
||||||
"fedima_sustainability_grant_req": "Requires 15% reduction",
|
"question": "Does it really work with only 6 months of data?",
|
||||||
"fedima_sustainability_grant_funding": "€20,000 per award",
|
"answer": "Yes. With 6 months we can detect basic patterns (day of the week, top-selling products). With 12 months, the AI learns seasonality (August vs December). Ideally 12 months, but 6 months is enough to start."
|
||||||
"eit_food_retail": "EIT Food - Retail Innovation",
|
|
||||||
"eit_food_retail_req": "Requires 20% reduction",
|
|
||||||
"eit_food_retail_funding": "€15-45k per project",
|
|
||||||
"un_sdg": "UN SDG 12.3 Certification",
|
|
||||||
"un_sdg_req": "Requires 50% reduction",
|
|
||||||
"eligible": "Eligible",
|
|
||||||
"on_track": "On Track"
|
|
||||||
},
|
},
|
||||||
"differentiator": {
|
"q2": {
|
||||||
"title": "The Only AI Platform",
|
"question": "What if my data is a mess?",
|
||||||
"description": "With built-in UN SDG 12.3 tracking, real-time environmental impact calculations, and one-click grant application exports. Not just reduce waste—prove it."
|
"answer": "Our team helps you clean it. If you have sales in Excel, paper, or any format, we migrate it free during the pilot. We only need: date, product sold, quantity. We fix the rest."
|
||||||
|
},
|
||||||
|
"q3": {
|
||||||
|
"question": "Do I have to use your POS or can I keep mine?",
|
||||||
|
"answer": "You can keep your current POS if you like it. We integrate with most systems. We also offer our own POS optimized for bakeries (optional, included in the plan)."
|
||||||
|
},
|
||||||
|
"q4": {
|
||||||
|
"question": "What happens after the 3 free months?",
|
||||||
|
"answer": "You decide. If you want to continue, you pay €79/month (20% lifetime discount for being a pilot). If not, cancel without explanations or penalties. Your data is always yours and we'll export it wherever you want."
|
||||||
|
},
|
||||||
|
"q5": {
|
||||||
|
"question": "Why should I trust you?",
|
||||||
|
"answer": "Good question. We're a registered Spanish company, GDPR compliant, your data never leaves the EU. The founder has over a decade of AI experience. But most importantly: if after 3 months we don't help you save money, we give you free consulting to optimize your bakery another way. No risk for you."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"final_cta": {
|
"final_cta": {
|
||||||
"scarcity_badge": "12 spots remaining of the 20 pilot program",
|
"scarcity_badge": "🔥 Only 12 spots left out of 20",
|
||||||
"title": "Be Among the First 20 Bakeries",
|
"title": "Be Among the First 20 Bakeries",
|
||||||
"title_accent": "To Try This Technology",
|
"title_accent": "To Try This Technology",
|
||||||
"subtitle": "It's not for everyone. We're looking for bakeries that want to <strong>reduce waste and increase profits</strong> with AI help, in exchange for honest feedback.",
|
"subtitle": "It's not for everyone. We're looking for bakeries that want to reduce waste and increase profits with AI help, in exchange for honest feedback.",
|
||||||
"cta_primary": "Apply for Pilot Spot",
|
"cta_primary": "Request Pilot Spot",
|
||||||
"cta_secondary": "See How It Works",
|
"cta_secondary": "See Demo (2 min)",
|
||||||
"why_now": {
|
"guarantee": "Guarantee: 3 months free. Cancel anytime. No risk."
|
||||||
"title": "Why act now?",
|
|
||||||
"lifetime_discount": {
|
|
||||||
"title": "20% lifetime discount",
|
|
||||||
"subtitle": "First 20 only"
|
|
||||||
},
|
|
||||||
"influence": {
|
|
||||||
"title": "Influence the roadmap",
|
|
||||||
"subtitle": "Your needs first"
|
|
||||||
},
|
|
||||||
"vip_support": {
|
|
||||||
"title": "VIP Support",
|
|
||||||
"subtitle": "Direct team access"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"guarantee": "Guarantee: Cancel anytime without giving explanations"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -441,6 +441,16 @@
|
|||||||
"start_free": "Comenzar Gratis",
|
"start_free": "Comenzar Gratis",
|
||||||
"register": "Registro",
|
"register": "Registro",
|
||||||
"language": "Idioma",
|
"language": "Idioma",
|
||||||
"open_menu": "Abrir menú de navegación"
|
"open_menu": "Abrir menú de navegación",
|
||||||
|
"theme": "Tema",
|
||||||
|
"skip_to_content": "Saltar al contenido principal",
|
||||||
|
"close_menu": "Cerrar menú",
|
||||||
|
"mobile_menu": "Menú de navegación móvil"
|
||||||
|
},
|
||||||
|
"nav": {
|
||||||
|
"home": "Inicio",
|
||||||
|
"features": "Funcionalidades",
|
||||||
|
"about": "Nosotros",
|
||||||
|
"contact": "Contacto"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
233
frontend/src/locales/es/features.json
Normal file
233
frontend/src/locales/es/features.json
Normal file
@@ -0,0 +1,233 @@
|
|||||||
|
{
|
||||||
|
"hero": {
|
||||||
|
"title": "Cómo Bakery-IA Trabaja Para Ti Cada Día",
|
||||||
|
"subtitle": "Todas las funcionalidades explicadas en lenguaje sencillo para dueños de panaderías"
|
||||||
|
},
|
||||||
|
"automatic": {
|
||||||
|
"badge": "La Funcionalidad Estrella",
|
||||||
|
"title": "Tu Asistente Personal Que Nunca Duerme",
|
||||||
|
"intro": "Imagina contratar un ayudante súper organizado que llega a las 5:30 AM (antes que tú) y hace todo esto AUTOMÁTICAMENTE:",
|
||||||
|
"step1": {
|
||||||
|
"title": "Revisa Todo Tu Inventario",
|
||||||
|
"item1": "Cuenta cada kilo de harina, cada litro de leche",
|
||||||
|
"item2": "Comprueba fechas de caducidad",
|
||||||
|
"item3": "Ve qué llega hoy de proveedores"
|
||||||
|
},
|
||||||
|
"step2": {
|
||||||
|
"title": "Predice Ventas de Hoy",
|
||||||
|
"item1": "Analiza el día (lunes lluvioso, fiesta local, colegio cerrado)",
|
||||||
|
"item2": "Compara con días similares del pasado",
|
||||||
|
"item3": "Te dice: \"Hoy venderás 80 croissants, 120 barras, 50 magdalenas\""
|
||||||
|
},
|
||||||
|
"step3": {
|
||||||
|
"title": "Planifica Qué Hacer",
|
||||||
|
"item1": "Calcula exactamente cuánto hornear",
|
||||||
|
"item2": "Te da una lista lista para ejecutar",
|
||||||
|
"item3": "\"Haz 80 croissants (no 100), usa 5kg mantequilla, 3kg harina...\""
|
||||||
|
},
|
||||||
|
"step4": {
|
||||||
|
"title": "Gestiona Inventario Inteligentemente",
|
||||||
|
"projection_title": "Proyecta 7 días hacia adelante:",
|
||||||
|
"day1": "Hoy: 50kg harina",
|
||||||
|
"day2": "Mañana: 42kg",
|
||||||
|
"day3": "Pasado: 30kg",
|
||||||
|
"day4": "Día 4: 15kg",
|
||||||
|
"day5": "Día 5: Te quedarías sin harina",
|
||||||
|
"solution_title": "SOLUCIÓN AUTOMÁTICA:",
|
||||||
|
"solution": "\"Pide 50kg hoy, llega en 3 días, problema resuelto\""
|
||||||
|
},
|
||||||
|
"step5": {
|
||||||
|
"title": "Crea Pedidos a Proveedores",
|
||||||
|
"item1": "Sabe que Proveedor A tarda 3 días, Proveedor B tarda 5",
|
||||||
|
"item2": "Calcula cuándo pedir para que llegue justo a tiempo",
|
||||||
|
"item3": "Prepara pedidos listos para aprobar con 1 clic"
|
||||||
|
},
|
||||||
|
"step6": {
|
||||||
|
"title": "Previene Desperdicios",
|
||||||
|
"perishables": "Ingredientes perecederos (leche, nata, huevos):",
|
||||||
|
"item1": "\"Tienes leche que caduca en 5 días\"",
|
||||||
|
"item2": "\"Solo usarás 15L en 5 días\"",
|
||||||
|
"item3": "\"No pidas más de 15L, se desperdiciará\""
|
||||||
|
},
|
||||||
|
"result": {
|
||||||
|
"title": "A las 6:00 AM recibes un email:",
|
||||||
|
"item1": "Predicción del día hecha",
|
||||||
|
"item2": "Plan de producción listo",
|
||||||
|
"item3": "3 pedidos creados (aprobar con 1 clic)",
|
||||||
|
"item4": "Alerta: \"Leche caduca en 2 días, úsala primero\""
|
||||||
|
},
|
||||||
|
"eliminates": {
|
||||||
|
"title": "Lo que ELIMINA de tu rutina:",
|
||||||
|
"item1": "Adivinar cuánto hacer",
|
||||||
|
"item2": "Contar inventario manualmente",
|
||||||
|
"item3": "Calcular cuándo pedir a proveedores",
|
||||||
|
"item4": "Recordar fechas de caducidad",
|
||||||
|
"item5": "Preocuparte por quedarte sin stock",
|
||||||
|
"item6": "Desperdiciar ingredientes caducados"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"local": {
|
||||||
|
"badge": "Tu Ventaja Competitiva",
|
||||||
|
"title": "Tu Panadería Es Única. La IA También.",
|
||||||
|
"intro": "Las IA genéricas saben que es lunes. La TUYA sabe que:",
|
||||||
|
"schools": {
|
||||||
|
"title": "Colegios Cerca",
|
||||||
|
"item1": "\"El CEIP San José está a 200m\"",
|
||||||
|
"item2": "\"En agosto venden 40% menos (vacaciones escolares)\"",
|
||||||
|
"item3": "\"Los lunes a las 8:30 hay pico (padres tras dejar niños)\""
|
||||||
|
},
|
||||||
|
"offices": {
|
||||||
|
"title": "Oficinas y Empresas",
|
||||||
|
"item1": "\"Edificio de oficinas a 150m (250 trabajadores)\"",
|
||||||
|
"item2": "\"Viernes venden menos al mediodía (teletrabajo)\"",
|
||||||
|
"item3": "\"Hora punta: 13:00-14:00 (bocadillos)\""
|
||||||
|
},
|
||||||
|
"gyms": {
|
||||||
|
"title": "Centros Deportivos",
|
||||||
|
"item1": "\"Gimnasio a 300m\"",
|
||||||
|
"item2": "\"Mayor venta de productos saludables (pan integral, barritas)\"",
|
||||||
|
"item3": "\"Pico a las 7:00 AM y 19:00 PM\""
|
||||||
|
},
|
||||||
|
"competition": {
|
||||||
|
"title": "Tu Competencia",
|
||||||
|
"item1": "\"Otra panadería abrió hace 2 meses a 500m\"",
|
||||||
|
"item2": "\"Impacto: -15% en ventas de pan básico\"",
|
||||||
|
"item3": "\"Oportunidad: Diferénciate con especialidades\""
|
||||||
|
},
|
||||||
|
"weather": {
|
||||||
|
"title": "Clima de Tu Zona",
|
||||||
|
"item1": "\"Datos AEMET de tu código postal\"",
|
||||||
|
"item2": "\"Lluvia → -20% croissants, +10% pan de molde\"",
|
||||||
|
"item3": "\"Calor → +30% productos frescos\""
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "Eventos Locales",
|
||||||
|
"item1": "\"Mercadillo los viernes en Plaza Mayor (500m)\"",
|
||||||
|
"item2": "\"Fiestas del barrio próxima semana\"",
|
||||||
|
"item3": "\"Partido importante → pico de ventas pre-evento\""
|
||||||
|
},
|
||||||
|
"why_matters": {
|
||||||
|
"title": "Por qué importa:",
|
||||||
|
"generic": "IA genérica:",
|
||||||
|
"generic_example": "\"Es lunes → vende X\"",
|
||||||
|
"yours": "TU IA:",
|
||||||
|
"yours_example": "\"Es lunes, llueve, colegio cerrado (festivo local), mercadillo cancelado → vende Y\""
|
||||||
|
},
|
||||||
|
"accuracy": "Precisión: 92% (vs 60-70% de sistemas genéricos)"
|
||||||
|
},
|
||||||
|
"forecasting": {
|
||||||
|
"title": "Sabe Cuánto Venderás Mañana (92% de Precisión)",
|
||||||
|
"subtitle": "No es magia. Es matemáticas con tus datos.",
|
||||||
|
"learns_from": {
|
||||||
|
"title": "La IA aprende de:",
|
||||||
|
"item1": "Tus ventas pasadas (6-12 meses)",
|
||||||
|
"item2": "Día de la semana (lunes ≠ sábado)",
|
||||||
|
"item3": "Estacionalidad (agosto ≠ diciembre)",
|
||||||
|
"item4": "Clima local (lluvia, calor, frío)",
|
||||||
|
"item5": "Eventos y festivos",
|
||||||
|
"item6": "Tu entorno único"
|
||||||
|
},
|
||||||
|
"result": {
|
||||||
|
"title": "Resultado:",
|
||||||
|
"intro": "Mañana (martes 15 de marzo) venderás:",
|
||||||
|
"croissants": "78-82 croissants",
|
||||||
|
"croissants_avg": "(80 ±2)",
|
||||||
|
"loaves": "115-125 barras",
|
||||||
|
"loaves_avg": "(120 ±5)",
|
||||||
|
"muffins": "45-50 magdalenas",
|
||||||
|
"muffins_avg": "(48 ±2)"
|
||||||
|
},
|
||||||
|
"confidence": "Confianza: 92% de las veces acierta dentro del rango"
|
||||||
|
},
|
||||||
|
"waste": {
|
||||||
|
"title": "Menos Pan en la Basura, Más Dinero en Tu Bolsillo",
|
||||||
|
"before": {
|
||||||
|
"title": "Ejemplo típico de panadería:",
|
||||||
|
"item1": "Haces 50 barras de más cada día \"por si acaso\"",
|
||||||
|
"item2": "Precio: €2/barra",
|
||||||
|
"daily": "Desperdicio: 50 × €2 = €100/día",
|
||||||
|
"monthly": "Al mes: €100 × 30 = €3,000 perdidos",
|
||||||
|
"yearly": "Al año: €36,000 tirados a la basura"
|
||||||
|
},
|
||||||
|
"after": {
|
||||||
|
"title": "Con Bakery-IA:",
|
||||||
|
"item1": "Predicción precisa → Haces 5-10 barras de más (seguridad)",
|
||||||
|
"item2": "Desperdicio: 5 × €2 = €10/día",
|
||||||
|
"monthly": "Al mes: €300",
|
||||||
|
"savings": "AHORRO: €2,700/mes (€32,400/año)",
|
||||||
|
"roi": "Recuperas la inversión en semana 1."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"sustainability": {
|
||||||
|
"badge": "Funcionalidad del Sistema",
|
||||||
|
"title": "Ayuda al Planeta, Accede a Ayudas Económicas",
|
||||||
|
"un_sdg": {
|
||||||
|
"title": "Cumplimiento Automático ODS 12.3 (ONU)",
|
||||||
|
"description": "Sin hacer nada extra, cumples con el Objetivo de Desarrollo Sostenible 12.3 de Naciones Unidas (reducción desperdicio alimentario).",
|
||||||
|
"benefit": "Recibes certificación automática → Credibilidad con clientes"
|
||||||
|
},
|
||||||
|
"grants": {
|
||||||
|
"title": "Elegible para 5 Programas de Ayudas:",
|
||||||
|
"pima": {
|
||||||
|
"title": "PIMA Adapta (MITECO)",
|
||||||
|
"amount": "Hasta €50,000",
|
||||||
|
"description": "Proyectos de economía circular. Tu sistema = reducción desperdicio certificada"
|
||||||
|
},
|
||||||
|
"tourism": {
|
||||||
|
"title": "Planes de Sostenibilidad Turística",
|
||||||
|
"amount": "Hasta €30,000",
|
||||||
|
"description": "Para panaderías en zonas turísticas"
|
||||||
|
},
|
||||||
|
"moves": {
|
||||||
|
"title": "MOVES Circular (Empresas)",
|
||||||
|
"amount": "Hasta €20,000",
|
||||||
|
"description": "Transformación digital sostenible"
|
||||||
|
},
|
||||||
|
"regional": {
|
||||||
|
"title": "Ayudas Economía Circular Autonómicas",
|
||||||
|
"amount": "Variable",
|
||||||
|
"description": "Depende de tu comunidad autónoma"
|
||||||
|
},
|
||||||
|
"tax": {
|
||||||
|
"title": "Bonificaciones Fiscales",
|
||||||
|
"amount": "Hasta 25% reducción",
|
||||||
|
"description": "Deducción por inversión en sostenibilidad"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"how_it_works": {
|
||||||
|
"title": "Cómo funciona:",
|
||||||
|
"item1": "Bakery-IA genera reportes automáticos",
|
||||||
|
"item2": "Métricas de reducción de desperdicio (kg CO₂, litros agua)",
|
||||||
|
"item3": "Documentación lista para solicitudes",
|
||||||
|
"item4": "Te ayudamos con el proceso"
|
||||||
|
},
|
||||||
|
"impact": {
|
||||||
|
"co2": "reducidos al mes (equivale a 3 árboles plantados)",
|
||||||
|
"water": "agua ahorrada al año",
|
||||||
|
"certification": "Certificado",
|
||||||
|
"certification_desc": "ODS 12.3 ONU"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"business_models": {
|
||||||
|
"title": "Para Cualquier Modelo de Negocio",
|
||||||
|
"subtitle": "No importa cómo trabajes, funciona para ti",
|
||||||
|
"local": {
|
||||||
|
"title": "Panadería Producción Local",
|
||||||
|
"description": "Horneas y vendes en el mismo local",
|
||||||
|
"benefit1": "IA optimiza producción diaria",
|
||||||
|
"benefit2": "Gestiona inventario de un punto"
|
||||||
|
},
|
||||||
|
"central": {
|
||||||
|
"title": "Obrador Central + Puntos de Venta",
|
||||||
|
"description": "Produces en obrador, distribuyes a tiendas",
|
||||||
|
"benefit1": "IA predice demanda por punto de venta",
|
||||||
|
"benefit2": "Optimiza distribución y transporte",
|
||||||
|
"benefit3": "Gestiona inventario central + puntos"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"cta": {
|
||||||
|
"title": "Ver Bakery-IA en Acción",
|
||||||
|
"subtitle": "Solicita una demo personalizada para tu panadería",
|
||||||
|
"button": "Solicitar Demo"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,337 +1,273 @@
|
|||||||
{
|
{
|
||||||
"navigation": {
|
|
||||||
"features": "Características",
|
|
||||||
"benefits": "Beneficios",
|
|
||||||
"pricing": "Precios",
|
|
||||||
"faq": "Preguntas Frecuentes"
|
|
||||||
},
|
|
||||||
"hero": {
|
"hero": {
|
||||||
"badge": "IA Avanzada para Panaderías",
|
"scarcity_badge": "🔥 Solo 12 plazas restantes de 20 en el programa piloto",
|
||||||
"badge_sustainability": "Reducción de Desperdicio Alimentario",
|
"badge": "IA Avanzada para Panaderías Modernas",
|
||||||
"title_line1": "Aumenta Ganancias,",
|
"title_line1": "Deja de Perder €2,000 al Mes",
|
||||||
"title_line2": "Reduce Desperdicios",
|
"title_line2": "en Pan Que Nadie Compra",
|
||||||
"subtitle": "Plataforma de IA para panaderías que quieren producir exactamente lo que van a vender. Reduce desperdicio alimentario, mejora márgenes y ahorra tiempo en planificación. Tus datos son 100% tuyos.",
|
"subtitle": "IA que predice exactamente cuánto venderás mañana. Produce lo justo. Reduce desperdicios. Aumenta ganancias. <strong>3 meses gratis para las primeras 20 panaderías</strong>.",
|
||||||
"pilot_banner": {
|
"cta_primary": "Solicitar Plaza en el Piloto",
|
||||||
"title": "¡Lanzamiento Piloto!",
|
"cta_secondary": "Ver Cómo Funciona (2 min)",
|
||||||
"offer": "3 MESES GRATIS",
|
"trust": {
|
||||||
"description": "para los primeros en unirse al piloto"
|
"no_cc": "3 meses gratis",
|
||||||
|
"card": "Tarjeta requerida",
|
||||||
|
"quick": "Lista en 10 minutos",
|
||||||
|
"spanish": "Soporte en español"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"problems": {
|
||||||
|
"title": "El Problema Que Resolvemos",
|
||||||
|
"subtitle": "Si tienes una panadería, sabes exactamente de qué hablamos",
|
||||||
|
"problem1": {
|
||||||
|
"title": "Tiras 50 panes al día \"por si acaso\"",
|
||||||
|
"description": "50 panes × €2 = €100/día = €3,000/mes a la basura. Y eso solo en pan."
|
||||||
},
|
},
|
||||||
"cta_primary": "Comenzar Gratis Ahora",
|
"problem2": {
|
||||||
"cta_secondary": "Ver Demo",
|
"title": "Clientes se van sin comprar",
|
||||||
"features": {
|
"description": "\"Ya no te quedan croissants a las 14:00\" = ventas perdidas + clientes frustrados."
|
||||||
"card_required": "Tarjeta requerida • 3 meses gratis",
|
},
|
||||||
"no_credit_card": "Tarjeta requerida • 3 meses gratis",
|
"problem3": {
|
||||||
"quick_setup": "Lista en minutos, no horas",
|
"title": "Planificas \"a ojo\" con Excel",
|
||||||
"support_24_7": "Asistencia personalizada en español"
|
"description": "Basándote en experiencia y corazonadas. Funciona... hasta que no funciona."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"solutions": {
|
||||||
|
"title": "La Solución",
|
||||||
|
"subtitle": "IA que conoce TU panadería, TU barrio, TUS clientes",
|
||||||
|
"solution1": {
|
||||||
|
"title": "Predice demanda real (92% precisión)",
|
||||||
|
"description": "Sabe que mañana es lunes lluvioso, colegio cerrado, mercadillo cancelado → venderás 78 croissants (no 100)."
|
||||||
|
},
|
||||||
|
"solution2": {
|
||||||
|
"title": "Sistema automático cada mañana",
|
||||||
|
"description": "5:30 AM: revisa inventario, predice ventas, planifica producción, crea pedidos. Tú llegas a las 6:00 y todo está listo."
|
||||||
|
},
|
||||||
|
"solution3": {
|
||||||
|
"title": "Tus datos = tus subvenciones",
|
||||||
|
"description": "Datos 100% tuyos + reducción de desperdicios certificada = acceso a €50,000 en ayudas europeas de sostenibilidad."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"pillars": {
|
||||||
|
"badge": "Las 3 Claves del Sistema",
|
||||||
|
"title": "Por Qué Funciona Para Tu Panadería",
|
||||||
|
"subtitle": "No es magia. Es matemática aplicada a TU realidad.",
|
||||||
|
"pillar1": {
|
||||||
|
"title": "🎯 Predice Demanda con Datos de Tu Zona",
|
||||||
|
"intro": "IA que conoce tu barrio, no solo el calendario. Sabe que el colegio de al lado cierra en agosto, que los viernes hay mercado en tu plaza, y que abrió otra panadería a 500m.",
|
||||||
|
"schools": {
|
||||||
|
"title": "Colegios Cerca",
|
||||||
|
"item1": "\"El CEIP San José está a 200m\"",
|
||||||
|
"item2": "\"En agosto vendes 40% menos (vacaciones)\"",
|
||||||
|
"item3": "\"Los lunes a las 8:30 hay pico (padres)\""
|
||||||
|
},
|
||||||
|
"competition": {
|
||||||
|
"title": "Tu Competencia",
|
||||||
|
"item1": "\"Abrió otra panadería hace 2 meses a 500m\"",
|
||||||
|
"item2": "\"Impacto: -15% en pan básico\"",
|
||||||
|
"item3": "\"Oportunidad: Diferénciate con especialidades\""
|
||||||
|
},
|
||||||
|
"weather": {
|
||||||
|
"title": "Clima de Tu Zona",
|
||||||
|
"item1": "\"Datos AEMET de tu código postal\"",
|
||||||
|
"item2": "\"Lluvia → -20% croissants, +10% pan de molde\"",
|
||||||
|
"item3": "\"Calor → +30% productos frescos\""
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "Eventos Locales",
|
||||||
|
"item1": "\"Mercadillo los viernes en Plaza Mayor (500m)\"",
|
||||||
|
"item2": "\"Fiestas del barrio próxima semana\"",
|
||||||
|
"item3": "\"Partido importante → pico pre-evento\""
|
||||||
|
},
|
||||||
|
"accuracy": "Precisión: 92% (vs 60-70% de sistemas genéricos)",
|
||||||
|
"cta": "Ver Todas las Funcionalidades"
|
||||||
|
},
|
||||||
|
"pillar2": {
|
||||||
|
"title": "🤖 Sistema Automático Cada Mañana",
|
||||||
|
"intro": "Imagina contratar un ayudante súper organizado que llega a las 5:30 AM (antes que tú) y hace todo esto AUTOMÁTICAMENTE:",
|
||||||
|
"step1": {
|
||||||
|
"title": "5:30 AM - Revisa Todo Tu Inventario",
|
||||||
|
"item1": "Cuenta cada kilo de harina, cada litro de leche",
|
||||||
|
"item2": "Comprueba fechas de caducidad",
|
||||||
|
"item3": "Ve qué llega hoy de proveedores"
|
||||||
|
},
|
||||||
|
"step2": {
|
||||||
|
"title": "5:35 AM - Predice Ventas de Hoy",
|
||||||
|
"item1": "Analiza el día (lunes lluvioso, fiesta local, colegio cerrado)",
|
||||||
|
"item2": "Compara con días similares del pasado",
|
||||||
|
"item3": "Te dice: \"Hoy venderás 80 croissants, 120 barras, 50 magdalenas\""
|
||||||
|
},
|
||||||
|
"step3": {
|
||||||
|
"title": "5:40 AM - Planifica Qué Hacer",
|
||||||
|
"item1": "Calcula exactamente cuánto hornear",
|
||||||
|
"item2": "Te da una lista lista para ejecutar",
|
||||||
|
"item3": "\"Haz 80 croissants (no 100), usa 5kg mantequilla, 3kg harina...\""
|
||||||
|
},
|
||||||
|
"step4": {
|
||||||
|
"title": "5:45 AM - Gestiona Inventario Inteligentemente",
|
||||||
|
"projection_title": "Proyecta 7 días hacia adelante:",
|
||||||
|
"day1": "Hoy: 50kg harina",
|
||||||
|
"day2": "Mañana: 42kg",
|
||||||
|
"day3": "Pasado: 30kg",
|
||||||
|
"day4": "Día 4: 15kg",
|
||||||
|
"day5": "Día 5: Te quedarías sin harina",
|
||||||
|
"solution_title": "SOLUCIÓN AUTOMÁTICA:",
|
||||||
|
"solution": "\"Pide 50kg hoy, llega en 3 días, problema resuelto\""
|
||||||
|
},
|
||||||
|
"step5": {
|
||||||
|
"title": "5:50 AM - Crea Pedidos a Proveedores",
|
||||||
|
"item1": "Sabe que Proveedor A tarda 3 días, Proveedor B tarda 5",
|
||||||
|
"item2": "Calcula cuándo pedir para que llegue justo a tiempo",
|
||||||
|
"item3": "Prepara pedidos listos para aprobar con 1 clic"
|
||||||
|
},
|
||||||
|
"result": {
|
||||||
|
"title": "6:00 AM - Recibes un Email",
|
||||||
|
"item1": "Predicción del día hecha ✅",
|
||||||
|
"item2": "Plan de producción listo ✅",
|
||||||
|
"item3": "3 pedidos creados (aprobar con 1 clic) ✅",
|
||||||
|
"item4": "Alerta: \"Leche caduca en 2 días, úsala primero\" ⚠️"
|
||||||
|
},
|
||||||
|
"eliminates": {
|
||||||
|
"title": "Lo que ELIMINA de tu rutina:",
|
||||||
|
"item1": "❌ Adivinar cuánto hacer",
|
||||||
|
"item2": "❌ Contar inventario manualmente",
|
||||||
|
"item3": "❌ Calcular cuándo pedir a proveedores",
|
||||||
|
"item4": "❌ Recordar fechas de caducidad",
|
||||||
|
"item5": "❌ Preocuparte por quedarte sin stock",
|
||||||
|
"item6": "❌ Desperdiciar ingredientes caducados"
|
||||||
|
},
|
||||||
|
"cta": "Ver Todas las Funcionalidades"
|
||||||
|
},
|
||||||
|
"pillar3": {
|
||||||
|
"title": "📊 Tus Datos, Tus Subvenciones",
|
||||||
|
"intro": "Tus datos operativos son 100% tuyos. Nunca compartidos. Nunca vendidos. Y además, te abren puertas a financiación europea.",
|
||||||
|
"data_ownership": {
|
||||||
|
"title": "100% Propiedad de Tus Datos",
|
||||||
|
"item1": "Tus ventas, inventario, proveedores, recetas: todo tuyo",
|
||||||
|
"item2": "Cumplimiento RGPD garantizado (empresa española)",
|
||||||
|
"item3": "Exporta tus datos cuando quieras, a donde quieras"
|
||||||
|
},
|
||||||
|
"sustainability": {
|
||||||
|
"title": "Reducción de Desperdicios Certificada",
|
||||||
|
"intro": "Sin hacer nada extra, cumples con el Objetivo de Desarrollo Sostenible 12.3 de la ONU (reducción desperdicio alimentario).",
|
||||||
|
"item1": "Recibes certificación automática",
|
||||||
|
"item2": "Métricas de impacto ambiental (kg CO₂, litros agua)",
|
||||||
|
"item3": "Reportes listos para solicitudes de ayudas"
|
||||||
|
},
|
||||||
|
"grants": {
|
||||||
|
"title": "Elegible para €50,000 en Ayudas Europeas",
|
||||||
|
"pima": "PIMA Adapta (MITECO) - Hasta €50,000",
|
||||||
|
"tourism": "Planes de Sostenibilidad Turística - Hasta €30,000",
|
||||||
|
"moves": "MOVES Circular (Empresas) - Hasta €20,000",
|
||||||
|
"regional": "Ayudas Economía Circular Autonómicas - Variable",
|
||||||
|
"tax": "Bonificaciones Fiscales - Hasta 25% reducción",
|
||||||
|
"help": "Te ayudamos con el proceso de solicitud"
|
||||||
|
},
|
||||||
|
"impact": {
|
||||||
|
"co2": "reducidos al mes",
|
||||||
|
"co2_equivalent": "(equivale a 3 árboles plantados)",
|
||||||
|
"water": "agua ahorrada al año",
|
||||||
|
"certification": "Certificado ODS 12.3 ONU"
|
||||||
|
},
|
||||||
|
"cta": "Ver Todas las Funcionalidades"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"how_it_works": {
|
||||||
|
"title": "Cómo Empezar",
|
||||||
|
"subtitle": "3 pasos. 10 minutos. Listo.",
|
||||||
|
"step1": {
|
||||||
|
"title": "Sube 6-12 meses de datos de ventas",
|
||||||
|
"description": "Más meses = predicciones más precisas. Si tienes solo 6 meses, funciona igual, pero mejora con el tiempo.",
|
||||||
|
"time": "5 minutos"
|
||||||
|
},
|
||||||
|
"step2": {
|
||||||
|
"title": "La IA aprende de TU panadería",
|
||||||
|
"description": "Analiza tus patrones, productos, estacionalidad. No necesitas configurar nada.",
|
||||||
|
"time": "Automático"
|
||||||
|
},
|
||||||
|
"step3": {
|
||||||
|
"title": "Empiezas a recibir predicciones",
|
||||||
|
"description": "Cada mañana a las 6:00 AM: predicción del día, plan de producción, pedidos a aprobar.",
|
||||||
|
"time": "Al día siguiente"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pilot": {
|
"pilot": {
|
||||||
"banner": {
|
"badge": "Programa Piloto - Solo 20 Plazas",
|
||||||
"active": "Programa Piloto Activado",
|
|
||||||
"trial_applied": "3 meses gratis aplicados automáticamente",
|
|
||||||
"coupon_code": "Código",
|
|
||||||
"description": "Has sido seleccionado para nuestro programa piloto exclusivo"
|
|
||||||
},
|
|
||||||
"badge": "Programa Piloto - Plazas Limitadas",
|
|
||||||
"title": "Buscamos 20 Panaderías Pioneras",
|
"title": "Buscamos 20 Panaderías Pioneras",
|
||||||
"subtitle": "Estamos seleccionando las primeras 20 panaderías para formar parte de nuestro programa piloto exclusivo. A cambio de tu feedback, obtienes <strong>3 meses gratis + precio preferencial de por vida</strong>.",
|
"subtitle": "No es para todo el mundo. Estamos seleccionando las primeras 20 panaderías para formar parte de nuestro programa piloto exclusivo.",
|
||||||
"benefits": {
|
|
||||||
"founders_beta": {
|
|
||||||
"title": "Founders Beta",
|
|
||||||
"description": "Acceso de por vida con 20% descuento"
|
|
||||||
},
|
|
||||||
"influence_product": {
|
|
||||||
"title": "Influye el Producto",
|
|
||||||
"description": "Tus necesidades moldean la plataforma"
|
|
||||||
},
|
|
||||||
"premium_support": {
|
|
||||||
"title": "Soporte Premium",
|
|
||||||
"description": "Atención directa del equipo fundador"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"features": {
|
|
||||||
"title_main": "Combate el Desperdicio Alimentario",
|
|
||||||
"title_accent": "con Inteligencia Artificial",
|
|
||||||
"badge": "Tecnología de IA de Última Generación",
|
|
||||||
"subtitle": "Sistema de alta tecnología que utiliza algoritmos de IA avanzados para optimizar tu producción, reducir residuos alimentarios y mantener tus datos 100% seguros y bajo tu control.",
|
|
||||||
"ai_prediction": {
|
|
||||||
"title": "IA Avanzada de Predicción",
|
|
||||||
"description": "Algoritmos de Inteligencia Artificial de última generación analizan patrones históricos, clima, eventos y tendencias para predecir demanda con precisión quirúrgica.",
|
|
||||||
"features": {
|
|
||||||
"accuracy": "Precisión del 92% en predicciones",
|
|
||||||
"learning": "Aprendizaje continuo y adaptativo",
|
|
||||||
"realtime": "Análisis predictivo en tiempo real"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"waste_reduction": {
|
|
||||||
"title": "Reducción de Desperdicio",
|
|
||||||
"description": "Contribuye al medioambiente y reduce costos eliminando hasta un 35% del desperdicio alimentario mediante producción optimizada e inteligente.",
|
|
||||||
"features": {
|
|
||||||
"reduction": "Hasta 35% menos desperdicio",
|
|
||||||
"savings": "Ahorro promedio de €800/mes",
|
|
||||||
"eligible": "Elegible para ayudas UE"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"data_ownership": {
|
|
||||||
"title": "Tus Datos, Tu Propiedad",
|
|
||||||
"description": "Privacidad y seguridad total. Tus datos operativos, proveedores y analíticas permanecen 100% bajo tu control. Nunca compartidos, nunca vendidos.",
|
|
||||||
"features": {
|
|
||||||
"ownership": "100% propiedad de datos",
|
|
||||||
"privacy": "Control total de privacidad",
|
|
||||||
"gdpr": "Cumplimiento GDPR garantizado"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"smart_inventory": {
|
|
||||||
"title": "Inventario Inteligente",
|
|
||||||
"description": "Control automático de stock con alertas predictivas, órdenes de compra automatizadas y optimización de costos de materias primas en tiempo real.",
|
|
||||||
"features": {
|
|
||||||
"alerts": "Alertas automáticas de stock bajo",
|
|
||||||
"orders": "Órdenes de compra automatizadas",
|
|
||||||
"optimization": "Optimización de costos de materias primas"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"production_planning": {
|
|
||||||
"title": "Planificación de Producción",
|
|
||||||
"description": "Programa automáticamente la producción diaria basada en predicciones de IA, optimiza horarios, recursos y maximiza la eficiencia de tus hornos.",
|
|
||||||
"features": {
|
|
||||||
"scheduling": "Programación automática de horneado",
|
|
||||||
"oven": "Optimización de uso de hornos",
|
|
||||||
"staff": "Gestión de personal y turnos"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"advanced_analytics": {
|
|
||||||
"title": "Analytics Avanzado",
|
|
||||||
"description": "Dashboards en tiempo real con métricas clave de negocio, análisis de rentabilidad por producto y reportes personalizables para tomar decisiones basadas en datos.",
|
|
||||||
"features": {
|
|
||||||
"realtime": "Dashboards en tiempo real",
|
|
||||||
"profitability": "Análisis de rentabilidad por producto",
|
|
||||||
"reports": "Reportes personalizables"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"pos_integration": {
|
|
||||||
"title": "POS Integrado",
|
|
||||||
"description": "Sistema de ventas completo y fácil de usar"
|
|
||||||
},
|
|
||||||
"quality_control": {
|
|
||||||
"title": "Control de Calidad",
|
|
||||||
"description": "Trazabilidad completa y gestión HACCP"
|
|
||||||
},
|
|
||||||
"automation": {
|
|
||||||
"title": "Automatización",
|
|
||||||
"description": "Procesos automáticos que ahorran tiempo"
|
|
||||||
},
|
|
||||||
"cloud_based": {
|
|
||||||
"title": "En la Nube",
|
|
||||||
"description": "Accede desde cualquier lugar, siempre actualizado"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"benefits": {
|
|
||||||
"title": "El Problema Que Resolvemos",
|
|
||||||
"title_accent": "Para Tu Panadería",
|
|
||||||
"subtitle": "Sabemos lo frustrante que es tirar producto al final del día, o quedarte sin stock cuando llegan clientes. La producción de panadería es difícil de optimizar... hasta ahora.",
|
|
||||||
"problems": {
|
|
||||||
"waste": {
|
|
||||||
"title": "Desperdicias entre 15-40% de producción",
|
|
||||||
"description": "Al final del día tiras producto que nadie compró. Son cientos de euros a la basura cada semana."
|
|
||||||
},
|
|
||||||
"stockouts": {
|
|
||||||
"title": "Pierdes ventas por falta de stock",
|
|
||||||
"description": "Clientes que vienen por su pan favorito y se van sin comprar porque ya se te acabó a las 14:00."
|
|
||||||
},
|
|
||||||
"manual": {
|
|
||||||
"title": "Excel, papel y \"experiencia\"",
|
|
||||||
"description": "Planificas basándote en intuición. Funciona... hasta que no funciona."
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"solutions": {
|
|
||||||
"exact_production": {
|
|
||||||
"title": "Produce exactamente lo que vas a vender",
|
|
||||||
"description": "La IA analiza tus ventas históricas, clima, eventos locales y festivos para predecir demanda real."
|
|
||||||
},
|
|
||||||
"stock_availability": {
|
|
||||||
"title": "Siempre tienes stock de lo que más se vende",
|
|
||||||
"description": "El sistema te avisa qué productos van a tener más demanda cada día, para que nunca te quedes sin."
|
|
||||||
},
|
|
||||||
"smart_automation": {
|
|
||||||
"title": "Automatización inteligente + datos reales",
|
|
||||||
"description": "Desde planificación de producción hasta gestión de inventario. Todo basado en matemáticas, no corazonadas."
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"value_proposition": {
|
|
||||||
"title": "El Objetivo: Que Ahorres Dinero Desde el Primer Mes",
|
|
||||||
"description": "No prometemos números mágicos porque cada panadería es diferente. Lo que SÍ prometemos es que si después de 3 meses no has reducido desperdicios o mejorado tus márgenes, <strong>te ayudamos gratis a optimizar tu negocio de otra forma</strong>.",
|
|
||||||
"points": {
|
|
||||||
"waste": "Menos desperdicio = más beneficio",
|
|
||||||
"time": "Menos tiempo en Excel, más en tu negocio",
|
|
||||||
"data": "Tus datos siempre son tuyos"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"risk_reversal": {
|
|
||||||
"title": "Sin Riesgo. Sin Ataduras.",
|
|
||||||
"subtitle": "Somos transparentes: esto es un piloto. Estamos construyendo la mejor herramienta para panaderías, y necesitamos tu ayuda.",
|
|
||||||
"what_you_get": {
|
"what_you_get": {
|
||||||
"title": "Lo Que Obtienes",
|
"title": "Lo Que Obtienes",
|
||||||
"free_trial": "<strong>3 meses completamente gratis</strong> para probar todas las funcionalidades",
|
"free_trial": "3 meses completamente gratis",
|
||||||
"lifetime_discount": "<strong>20% de descuento de por vida</strong> si decides continuar después del piloto",
|
"lifetime_discount": "20% descuento de por vida si continúas",
|
||||||
"founder_support": "<strong>Soporte directo del equipo fundador</strong> - respondemos en horas, no días",
|
"vip_support": "Soporte directo del equipo fundador",
|
||||||
"priority_features": "<strong>Tus ideas se implementan primero</strong> - construimos lo que realmente necesitas",
|
"influence": "Tus ideas se implementan primero"
|
||||||
"cancel_anytime": "<strong>Cancelas cuando quieras</strong> sin explicaciones ni penalizaciones"
|
|
||||||
},
|
},
|
||||||
"what_we_ask": {
|
"what_we_ask": {
|
||||||
"title": "Lo Que Pedimos",
|
"title": "Lo Que Pedimos",
|
||||||
"feedback": "<strong>Feedback honesto semanal</strong> (15 min) sobre qué funciona y qué no",
|
"feedback": "Feedback honesto semanal (15 min)",
|
||||||
"patience": "<strong>Paciencia con bugs</strong> - estamos en fase beta, habrá imperfecciones",
|
"patience": "Paciencia con bugs (estamos en beta)",
|
||||||
"data": "<strong>Datos de ventas históricos</strong> (opcional) para mejorar las predicciones",
|
"data": "Datos de ventas históricos (6-12 meses)",
|
||||||
"communication": "<strong>Comunicación abierta</strong> - queremos saber si algo no te gusta"
|
"communication": "Comunicación abierta"
|
||||||
},
|
},
|
||||||
"promise": "<strong>Promesa:</strong> Si después de 3 meses sientes que no te ayudamos a ahorrar dinero o reducir desperdicios, te damos una sesión gratuita de consultoría para optimizar tu panadería de otra forma.",
|
"spots_left": "Quedan 12 plazas de 20",
|
||||||
"credibility": {
|
"cta": "Solicitar Plaza en el Piloto"
|
||||||
"title": "¿Por Qué Confiar en Nosotros?",
|
|
||||||
"subtitle": "Entendemos que probar nueva tecnología es un riesgo. Por eso somos completamente transparentes:",
|
|
||||||
"spanish": {
|
|
||||||
"title": "100% Española",
|
|
||||||
"description": "Empresa registrada en España. Tus datos están protegidos por RGPD y nunca salen de la UE."
|
|
||||||
},
|
|
||||||
"technology": {
|
|
||||||
"title": "Tecnología Probada",
|
|
||||||
"description": "Usamos algoritmos de IA validados académicamente, adaptados específicamente para panaderías."
|
|
||||||
},
|
|
||||||
"team": {
|
|
||||||
"title": "Fundador Experto",
|
|
||||||
"description": "Emprendedor con más de una década de experiencia internacional en IA, transformación digital y proyectos de alto valor tecnológico en Europa, Asia y América"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"faq": {
|
|
||||||
"title": "Preguntas Frecuentes",
|
|
||||||
"subtitle": "Todo lo que necesitas saber sobre Panadería IA",
|
|
||||||
"questions": {
|
|
||||||
"accuracy": {
|
|
||||||
"q": "¿Qué tan precisa es la predicción de demanda?",
|
|
||||||
"a": "Nuestra IA alcanza una precisión del 92% en predicciones de demanda, analizando más de 50 variables incluyendo histórico de ventas, clima, eventos locales, estacionalidad y tendencias de mercado. La precisión mejora continuamente con más datos de tu panadería."
|
|
||||||
},
|
|
||||||
"implementation": {
|
|
||||||
"q": "¿Cuánto tiempo toma implementar el sistema?",
|
|
||||||
"a": "La configuración inicial toma solo 5 minutos. Nuestro equipo te ayuda a migrar tus datos históricos en 24-48 horas. La IA comienza a generar predicciones útiles después de una semana de datos, alcanzando máxima precisión en 30 días."
|
|
||||||
},
|
|
||||||
"integration": {
|
|
||||||
"q": "¿Se integra con mi sistema POS actual?",
|
|
||||||
"a": "Sí, nos integramos con más de 50 sistemas POS populares en España. También incluimos nuestro propio POS optimizado para panaderías. Si usas un sistema específico, nuestro equipo técnico puede crear una integración personalizada."
|
|
||||||
},
|
|
||||||
"support": {
|
|
||||||
"q": "¿Qué soporte técnico ofrecen?",
|
|
||||||
"a": "Ofrecemos soporte 24/7 en español por chat, email y teléfono. Todos nuestros técnicos son expertos en operaciones de panadería. Además, incluimos onboarding personalizado y training para tu equipo sin costo adicional."
|
|
||||||
},
|
|
||||||
"security": {
|
|
||||||
"q": "¿Mis datos están seguros?",
|
|
||||||
"a": "Absolutamente. Utilizamos cifrado AES-256, servidores en la UE, cumplimos 100% con RGPD y realizamos auditorías de seguridad trimestrales. Tus datos nunca se comparten con terceros y tienes control total sobre tu información."
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"business_models": {
|
|
||||||
"title": "Tu Modelo de Negocio, Nuestra Tecnología",
|
|
||||||
"subtitle": "Ya sea que produzcas y vendas en un solo lugar, o gestiones un obrador central con múltiples puntos de venta, nuestra IA se adapta a tu forma de trabajar",
|
|
||||||
"local_production": {
|
|
||||||
"title": "Producción Local",
|
|
||||||
"subtitle": "Un punto de venta y producción",
|
|
||||||
"description": "Tu panadería produce y vende en el mismo lugar. Necesitas optimizar producción diaria, minimizar desperdicios y maximizar frescura en cada horneada.",
|
|
||||||
"features": {
|
|
||||||
"prediction": "<strong>Predicción de demanda</strong> por ubicación única",
|
|
||||||
"inventory": "<strong>Gestión de inventario</strong> simplificada y directa",
|
|
||||||
"control": "<strong>Un solo punto de control</strong> - simple y eficiente"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"central_workshop": {
|
|
||||||
"title": "Panadería Franquiciada",
|
|
||||||
"subtitle": "Punto de venta con obrador central",
|
|
||||||
"description": "Operas un punto de venta que recibe productos de un obrador central. Necesitas gestionar pedidos, inventario y ventas para optimizar tu operación retail.",
|
|
||||||
"features": {
|
|
||||||
"prediction": "<strong>Gestión de pedidos</strong> al obrador central",
|
|
||||||
"distribution": "<strong>Control de inventario</strong> de productos recibidos",
|
|
||||||
"visibility": "<strong>Previsión de ventas</strong> para tu punto"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"same_ai": "La misma IA potente, adaptada a tu forma de trabajar"
|
|
||||||
},
|
},
|
||||||
"pricing": {
|
"pricing": {
|
||||||
"title": "Planes que se Adaptan a tu Negocio",
|
"badge": "Precios Transparentes",
|
||||||
"subtitle": "Sin costos ocultos, sin compromisos largos. Comienza gratis y escala según crezcas.",
|
"title": "Un Solo Plan. Sin Sorpresas.",
|
||||||
"compare_link": "Ver comparación completa de características"
|
"subtitle": "3 meses gratis para pilotos. Luego €99/mes (o €79/mes con descuento de por vida si fuiste piloto).",
|
||||||
},
|
"plan": {
|
||||||
"sustainability": {
|
"name": "Bakery-IA Completo",
|
||||||
"badge": "Alineado con ODS 12.3 de la ONU y Pacto Verde Europeo",
|
"pilot_price": "€0/mes",
|
||||||
"title_main": "No Solo Reduce Desperdicios",
|
"pilot_period": "Primeros 3 meses (piloto)",
|
||||||
"title_accent": "Demuéstralo al Mundo",
|
"regular_price": "€99/mes",
|
||||||
"subtitle": "La única plataforma de IA con seguimiento integrado del cumplimiento del ODS 12.3 de la ONU. Reduce desperdicios, ahorra dinero y califica para ayudas europeas de sostenibilidad—todo con métricas verificables de impacto ambiental.",
|
"pilot_discount_price": "€79/mes",
|
||||||
"metrics": {
|
"pilot_discount_note": "20% descuento de por vida si fuiste piloto",
|
||||||
"co2_avoided": "CO₂ Evitado Mensualmente",
|
|
||||||
"co2_equivalent": "Equivalente a plantar 43 árboles",
|
|
||||||
"water_saved": "Agua Ahorrada Mensualmente",
|
|
||||||
"water_equivalent": "Equivalente a 4,500 duchas",
|
|
||||||
"grants_eligible": "Programas de Ayudas Elegibles",
|
|
||||||
"grants_value": "Hasta €50,000 en financiación"
|
|
||||||
},
|
|
||||||
"sdg": {
|
|
||||||
"title": "Cumplimiento ODS 12.3 de la ONU",
|
|
||||||
"subtitle": "Reducir a la mitad el desperdicio alimentario para 2030",
|
|
||||||
"description": "Seguimiento en tiempo real hacia el objetivo de Desarrollo Sostenible 12.3 de la ONU. Nuestra IA te ayuda a lograr una reducción del 50% en desperdicios con datos verificables y auditables para solicitudes de ayudas y certificaciones.",
|
|
||||||
"progress_label": "Progreso hacia el Objetivo",
|
|
||||||
"baseline": "Línea Base",
|
|
||||||
"current": "Actual",
|
|
||||||
"target": "Objetivo 2030",
|
|
||||||
"features": {
|
"features": {
|
||||||
"tracking": "Seguimiento automático de línea base y progreso de desperdicios",
|
"prediction": "Predicción de demanda con IA",
|
||||||
"export": "Exportación de informes para solicitudes de ayudas con un clic",
|
"inventory": "Gestión automática de inventario",
|
||||||
"certification": "Datos de impacto ambiental listos para certificación"
|
"production": "Planificación de producción",
|
||||||
|
"orders": "Creación automática de pedidos",
|
||||||
|
"analytics": "Analytics y reportes avanzados",
|
||||||
|
"sustainability": "Métricas de sostenibilidad (ODS 12.3)",
|
||||||
|
"grants": "Documentación para ayudas europeas",
|
||||||
|
"support": "Soporte prioritario en español",
|
||||||
|
"data": "100% propiedad de tus datos"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"grants": {
|
"guarantee": "Cancelas cuando quieras sin dar explicaciones",
|
||||||
"life_circular_economy": "Programa LIFE - Economía Circular",
|
"cta": "Solicitar Plaza en el Piloto"
|
||||||
"life_circular_economy_req": "Requiere reducción del 15%",
|
},
|
||||||
"life_circular_economy_funding": "€73M disponibles",
|
"faq": {
|
||||||
"horizon_europe_cluster_6": "Horizonte Europa Cluster 6",
|
"badge": "Preguntas Frecuentes",
|
||||||
"horizon_europe_cluster_6_req": "Requiere reducción del 20%",
|
"title": "Lo Que Nos Preguntan Siempre",
|
||||||
"horizon_europe_cluster_6_funding": "€880M+ anuales",
|
"subtitle": "Respuestas honestas a preguntas reales",
|
||||||
"fedima_sustainability_grant": "Subvención Sostenibilidad Fedima",
|
"q1": {
|
||||||
"fedima_sustainability_grant_req": "Requiere reducción del 15%",
|
"question": "¿De verdad funciona con solo 6 meses de datos?",
|
||||||
"fedima_sustainability_grant_funding": "€20.000 por proyecto",
|
"answer": "Sí. Con 6 meses ya podemos detectar patrones básicos (día de la semana, productos más vendidos). Con 12 meses, la IA aprende estacionalidad (agosto vs diciembre). Lo ideal son 12 meses, pero 6 meses es suficiente para empezar."
|
||||||
"eit_food_retail": "EIT Food - Innovación Retail",
|
|
||||||
"eit_food_retail_req": "Requiere reducción del 20%",
|
|
||||||
"eit_food_retail_funding": "€15-45k por proyecto",
|
|
||||||
"un_sdg": "Certificación ODS 12.3 ONU",
|
|
||||||
"un_sdg_req": "Requiere reducción del 50%",
|
|
||||||
"eligible": "Elegible",
|
|
||||||
"on_track": "En Camino"
|
|
||||||
},
|
},
|
||||||
"differentiator": {
|
"q2": {
|
||||||
"title": "La Única Plataforma de IA",
|
"question": "¿Qué pasa si mis datos son un desastre?",
|
||||||
"description": "Con seguimiento integrado del ODS 12.3 de la ONU, cálculos de impacto ambiental en tiempo real y exportación de solicitudes de ayudas con un clic. No solo reduce desperdicios—demuéstralo."
|
"answer": "Nuestro equipo te ayuda a limpiarlos. Si tienes ventas en Excel, papel, o cualquier formato, lo migramos gratis durante el piloto. Solo necesitamos: fecha, producto vendido, cantidad. El resto lo arreglamos nosotros."
|
||||||
|
},
|
||||||
|
"q3": {
|
||||||
|
"question": "¿Tengo que usar vuestro POS o puedo seguir con el mío?",
|
||||||
|
"answer": "Puedes seguir con tu POS actual si te gusta. Nos integramos con la mayoría de sistemas. También ofrecemos nuestro propio POS optimizado para panaderías (opcional, incluido en el plan)."
|
||||||
|
},
|
||||||
|
"q4": {
|
||||||
|
"question": "¿Qué pasa después de los 3 meses gratis?",
|
||||||
|
"answer": "Tú decides. Si quieres continuar, pagas €79/mes (20% descuento de por vida por ser piloto). Si no, cancelas sin explicaciones ni penalizaciones. Tus datos siempre son tuyos y te los llevamos a donde quieras."
|
||||||
|
},
|
||||||
|
"q5": {
|
||||||
|
"question": "¿Por qué debería confiar en vosotros?",
|
||||||
|
"answer": "Buena pregunta. Somos una empresa española registrada, cumplimos RGPD, tus datos nunca salen de la UE. El fundador tiene más de una década de experiencia en IA. Pero lo más importante: si después de 3 meses no te ayudamos a ahorrar dinero, te damos consultoría gratis para optimizar tu panadería de otra forma. Sin riesgo para ti."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"final_cta": {
|
"final_cta": {
|
||||||
"scarcity_badge": "Quedan 12 plazas de las 20 del programa piloto",
|
"scarcity_badge": "🔥 Solo 12 plazas restantes de 20",
|
||||||
"title": "Sé de las Primeras 20 Panaderías",
|
"title": "Sé de las Primeras 20 Panaderías",
|
||||||
"title_accent": "En Probar Esta Tecnología",
|
"title_accent": "En Probar Esta Tecnología",
|
||||||
"subtitle": "No es para todo el mundo. Buscamos panaderías que quieran <strong>reducir desperdicios y aumentar ganancias</strong> con ayuda de IA, a cambio de feedback honesto.",
|
"subtitle": "No es para todo el mundo. Buscamos panaderías que quieran reducir desperdicios y aumentar ganancias con ayuda de IA, a cambio de feedback honesto.",
|
||||||
"cta_primary": "Solicitar Plaza en el Piloto",
|
"cta_primary": "Solicitar Plaza en el Piloto",
|
||||||
"cta_secondary": "Ver Cómo Funciona",
|
"cta_secondary": "Ver Demo (2 min)",
|
||||||
"why_now": {
|
"guarantee": "Garantía: 3 meses gratis. Cancelas cuando quieras. Sin riesgos."
|
||||||
"title": "¿Por qué actuar ahora?",
|
|
||||||
"lifetime_discount": {
|
|
||||||
"title": "20% descuento de por vida",
|
|
||||||
"subtitle": "Solo primeros 20"
|
|
||||||
},
|
|
||||||
"influence": {
|
|
||||||
"title": "Influyes en el roadmap",
|
|
||||||
"subtitle": "Tus necesidades primero"
|
|
||||||
},
|
|
||||||
"vip_support": {
|
|
||||||
"title": "Soporte VIP",
|
|
||||||
"subtitle": "Acceso directo al equipo"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"guarantee": "Garantía: Cancelas en cualquier momento sin dar explicaciones"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -417,6 +417,16 @@
|
|||||||
"start_free": "Hasi Doan",
|
"start_free": "Hasi Doan",
|
||||||
"register": "Erregistratu",
|
"register": "Erregistratu",
|
||||||
"language": "Hizkuntza",
|
"language": "Hizkuntza",
|
||||||
"open_menu": "Ireki nabigazio menua"
|
"open_menu": "Ireki nabigazio menua",
|
||||||
|
"theme": "Itxura",
|
||||||
|
"skip_to_content": "Joan eduki nagusira",
|
||||||
|
"close_menu": "Itxi menua",
|
||||||
|
"mobile_menu": "Mugikorreko nabigazio menua"
|
||||||
|
},
|
||||||
|
"nav": {
|
||||||
|
"home": "Hasiera",
|
||||||
|
"features": "Ezaugarriak",
|
||||||
|
"about": "Guri buruz",
|
||||||
|
"contact": "Harremanetan jarri"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
233
frontend/src/locales/eu/features.json
Normal file
233
frontend/src/locales/eu/features.json
Normal file
@@ -0,0 +1,233 @@
|
|||||||
|
{
|
||||||
|
"hero": {
|
||||||
|
"title": "Bakery-IA Nola Lan Egiten Duen Zuretzat Egunero",
|
||||||
|
"subtitle": "Funtzionalitate guztiak hizkuntza sinplean azalduta okindegiaren jabearentzat"
|
||||||
|
},
|
||||||
|
"automatic": {
|
||||||
|
"badge": "Funtzionalitate Nagusia",
|
||||||
|
"title": "Zure Laguntzaile Pertsonala Inoiz Lo Egiten Ez Duena",
|
||||||
|
"intro": "Imajinatu laguntzaile super antolatua kontratatzen duzula, 5:30ean goizean (zu baino lehen) iristen dena eta hau guztia AUTOMATIKOKI egiten duena:",
|
||||||
|
"step1": {
|
||||||
|
"title": "Zure Inbentario Osoa Berrikusten Du",
|
||||||
|
"item1": "Irin kilo bakoitza, esne litro bakoitza zenbatzen du",
|
||||||
|
"item2": "Iraungitze datak egiaztatzen ditu",
|
||||||
|
"item3": "Gaur hornitzaileetatik zer iristen den ikusten du"
|
||||||
|
},
|
||||||
|
"step2": {
|
||||||
|
"title": "Gaurko Salmentak Aurreikusten Ditu",
|
||||||
|
"item1": "Eguna aztertzen du (astelehen euritsu bat, toki-jai bat, eskola itxita)",
|
||||||
|
"item2": "Antzeko iraganeko egunekin konparatzen du",
|
||||||
|
"item3": "Esaten dizu: \"Gaur 80 croissant, 120 ogi, 50 madalena salduko dituzu\""
|
||||||
|
},
|
||||||
|
"step3": {
|
||||||
|
"title": "Zer Egin Behar Den Planifikatzen Du",
|
||||||
|
"item1": "Zehazki zenbat labean sartu behar den kalkulatzen du",
|
||||||
|
"item2": "Exekutatzeko prest dagoen zerrenda bat ematen dizu",
|
||||||
|
"item3": "\"Egin 80 croissant (ez 100), erabili 5kg gurin, 3kg irin...\""
|
||||||
|
},
|
||||||
|
"step4": {
|
||||||
|
"title": "Inbentarioa Adimentsu Kudeatzen Du",
|
||||||
|
"projection_title": "7 egun aurrera proiektatzen ditu:",
|
||||||
|
"day1": "Gaur: 50kg irin",
|
||||||
|
"day2": "Bihar: 42kg",
|
||||||
|
"day3": "Etzi: 30kg",
|
||||||
|
"day4": "4. eguna: 15kg",
|
||||||
|
"day5": "5. eguna: Irinik gabe geratuko zinateke",
|
||||||
|
"solution_title": "IRTENBIDE AUTOMATIKOA:",
|
||||||
|
"solution": "\"Eskatu 50kg gaur, 3 egunean iristen da, arazoa konponduta\""
|
||||||
|
},
|
||||||
|
"step5": {
|
||||||
|
"title": "Hornitzaileentzako Eskaerak Sortzen Ditu",
|
||||||
|
"item1": "Hornitzaile A-k 3 egun behar dituela badaki, Hornitzaile B-k 5",
|
||||||
|
"item2": "Noiz eskatu behar den kalkulatzen du zehatz-mehatz heltzeko",
|
||||||
|
"item3": "Klik batekin onartzeko prest dauden eskaerak prestatzen ditu"
|
||||||
|
},
|
||||||
|
"step6": {
|
||||||
|
"title": "Hondakinak Saihesten Ditu",
|
||||||
|
"perishables": "Osagai iraungakorrak (esnea, krema, arrautzak):",
|
||||||
|
"item1": "\"5 egunetan iraungitzen den esnea duzu\"",
|
||||||
|
"item2": "\"5 egunetan 15L bakarrik erabiliko dituzu\"",
|
||||||
|
"item3": "\"Ez eskatu 15L baino gehiago, galdu egingo da\""
|
||||||
|
},
|
||||||
|
"result": {
|
||||||
|
"title": "6:00etan goizean email bat jasotzen duzu:",
|
||||||
|
"item1": "Eguneko iragarpena eginda",
|
||||||
|
"item2": "Ekoizpen plana prest",
|
||||||
|
"item3": "3 eskaera sortuta (klik batekin onartu)",
|
||||||
|
"item4": "Alerta: \"Esnea 2 egunetan iraungitzen da, lehenik erabili\""
|
||||||
|
},
|
||||||
|
"eliminates": {
|
||||||
|
"title": "Zure erretinatik KENTZEN duena:",
|
||||||
|
"item1": "Zenbat egin asmatu",
|
||||||
|
"item2": "Inbentarioa eskuz zenbatu",
|
||||||
|
"item3": "Hornitzaileei noiz eskatu kalkulatu",
|
||||||
|
"item4": "Iraungitze datak gogoratu",
|
||||||
|
"item5": "Stockik gabe geratzeko ardura",
|
||||||
|
"item6": "Iraungitako osagaiak galdu"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"local": {
|
||||||
|
"badge": "Zure Abantaila Lehiakorra",
|
||||||
|
"title": "Zure Okindegi Bakarra Da. Zure IA Ere Bai.",
|
||||||
|
"intro": "IA generikoak astelehena dela dakite. ZUREA dakiena:",
|
||||||
|
"schools": {
|
||||||
|
"title": "Inguruko Eskolak",
|
||||||
|
"item1": "\"CEIP San José 200m-ra dago\"",
|
||||||
|
"item2": "\"Abuztuan %40 gutxiago saltzen da (eskola-oporrak)\"",
|
||||||
|
"item3": "\"Astelehenetan 8:30etan gailurra (gurasoek seme-alabak utzi ondoren)\""
|
||||||
|
},
|
||||||
|
"offices": {
|
||||||
|
"title": "Bulegoak eta Enpresak",
|
||||||
|
"item1": "\"Bulego eraikina 150m-ra (250 langile)\"",
|
||||||
|
"item2": "\"Ostiraletan bazkalduan gutxiago saltzen da (urruneko lana)\"",
|
||||||
|
"item3": "\"Ordu betea: 13:00-14:00 (bocadiloak)\""
|
||||||
|
},
|
||||||
|
"gyms": {
|
||||||
|
"title": "Kirol Zentroak",
|
||||||
|
"item1": "\"Gimnasioa 300m-ra\"",
|
||||||
|
"item2": "\"Produktu osasungarrien salmenta handiagoa (ogi integrala, barrak)\"",
|
||||||
|
"item3": "\"Gailurra 7:00etan goizean eta 19:00etan\""
|
||||||
|
},
|
||||||
|
"competition": {
|
||||||
|
"title": "Zure Lehia",
|
||||||
|
"item1": "\"Beste okindegi bat ireki zen duela 2 hilabete 500m-ra\"",
|
||||||
|
"item2": "\"Eragina: -%15 oinarrizko ogien salmentetan\"",
|
||||||
|
"item3": "\"Aukera: Bereizi espezialtateekin\""
|
||||||
|
},
|
||||||
|
"weather": {
|
||||||
|
"title": "Zure Eremuaren Eguraldia",
|
||||||
|
"item1": "\"AEMET datuak zure posta kodetik\"",
|
||||||
|
"item2": "\"Euria → -%20 croissant, +%10 opil ogi\"",
|
||||||
|
"item3": "\"Beroa → +%30 produktu freskoak\""
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "Tokiko Ekitaldiak",
|
||||||
|
"item1": "\"Ostiraleko azoka Plaza Mayorrean (500m)\"",
|
||||||
|
"item2": "\"Auzoaren jaiak datorren astean\"",
|
||||||
|
"item3": "\"Partida garrantzitsua → ekitaldi aurreko salmenten gailurra\""
|
||||||
|
},
|
||||||
|
"why_matters": {
|
||||||
|
"title": "Zergatik garrantzitsua den:",
|
||||||
|
"generic": "IA generikoa:",
|
||||||
|
"generic_example": "\"Astelehena da → saldu X\"",
|
||||||
|
"yours": "ZURE IA:",
|
||||||
|
"yours_example": "\"Astelehena da, euria ari du, eskola itxita (toki-jai bat), azoka ezeztatuta → saldu Y\""
|
||||||
|
},
|
||||||
|
"accuracy": "Zehaztasuna: %92 (vs %60-70 sistema generikoetan)"
|
||||||
|
},
|
||||||
|
"forecasting": {
|
||||||
|
"title": "Bihar Zer Salduko Duzun Badaki (%92ko Zehaztasunarekin)",
|
||||||
|
"subtitle": "Ez da magia. Matematika da zure datuekin.",
|
||||||
|
"learns_from": {
|
||||||
|
"title": "IAk ikasten du hemendik:",
|
||||||
|
"item1": "Zure iraganeko salmentak (6-12 hilabete)",
|
||||||
|
"item2": "Asteko eguna (astelehena ≠ larunbata)",
|
||||||
|
"item3": "Urtaroak (abuztua ≠ abendua)",
|
||||||
|
"item4": "Tokiko eguraldia (euria, beroa, hotza)",
|
||||||
|
"item5": "Ekitaldiak eta jaieguniak",
|
||||||
|
"item6": "Zure inguru bakarra"
|
||||||
|
},
|
||||||
|
"result": {
|
||||||
|
"title": "Emaitza:",
|
||||||
|
"intro": "Bihar (martxoaren 15, asteartea) salduko duzu:",
|
||||||
|
"croissants": "78-82 croissant",
|
||||||
|
"croissants_avg": "(80 ±2)",
|
||||||
|
"loaves": "115-125 ogi",
|
||||||
|
"loaves_avg": "(120 ±5)",
|
||||||
|
"muffins": "45-50 madalena",
|
||||||
|
"muffins_avg": "(48 ±2)"
|
||||||
|
},
|
||||||
|
"confidence": "Konfiantza: Kasuetan %92 tartean zehatz da"
|
||||||
|
},
|
||||||
|
"waste": {
|
||||||
|
"title": "Zakarrontzian Ogi Gutxiago, Zure Poltsikoan Diru Gehiago",
|
||||||
|
"before": {
|
||||||
|
"title": "Okindegiaren adibide tipikoa:",
|
||||||
|
"item1": "50 ogi gehigarri egiten dituzu egunero \"badaezpada\"",
|
||||||
|
"item2": "Prezioa: €2/ogia",
|
||||||
|
"daily": "Hondakina: 50 × €2 = €100/egunean",
|
||||||
|
"monthly": "Hilean: €100 × 30 = €3.000 galduta",
|
||||||
|
"yearly": "Urtean: €36.000 botata"
|
||||||
|
},
|
||||||
|
"after": {
|
||||||
|
"title": "Bakery-IArekin:",
|
||||||
|
"item1": "Aurreikuspena zehatza → 5-10 ogi gehigarri egiten dituzu (segurtasuna)",
|
||||||
|
"item2": "Hondakina: 5 × €2 = €10/egunean",
|
||||||
|
"monthly": "Hilean: €300",
|
||||||
|
"savings": "AURREZPENA: €2.700/hilean (€32.400/urtean)",
|
||||||
|
"roi": "1. astean berreskuratzen duzu inbertsioa."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"sustainability": {
|
||||||
|
"badge": "Sistemaren Ezaugarria",
|
||||||
|
"title": "Planetari Lagundu, Laguntza Ekonomikoetara Sartu",
|
||||||
|
"un_sdg": {
|
||||||
|
"title": "NBEren GIH 12.3 Betetzea Automatikoa",
|
||||||
|
"description": "Ezer gehigarri egin gabe, Nazio Batuen Garapen Iraunkorreko 12.3 Helburua betetzen duzu (elikagaien hondakinen murrizketa).",
|
||||||
|
"benefit": "Ziurtagiri automatikoa jasotzen duzu → Bezeroekin sinesgarritasuna"
|
||||||
|
},
|
||||||
|
"grants": {
|
||||||
|
"title": "5 Laguntza Programetarako Kaudimena:",
|
||||||
|
"pima": {
|
||||||
|
"title": "PIMA Adapta (MITECO)",
|
||||||
|
"amount": "€50.000 arte",
|
||||||
|
"description": "Ekonomia zirkularreko proiektuak. Zure sistema = hondakinen murrizketaren ziurtagiria"
|
||||||
|
},
|
||||||
|
"tourism": {
|
||||||
|
"title": "Turismo Iraunkortasuneko Planak",
|
||||||
|
"amount": "€30.000 arte",
|
||||||
|
"description": "Turismo eremuetako okindegientzat"
|
||||||
|
},
|
||||||
|
"moves": {
|
||||||
|
"title": "MOVES Zirkularra (Enpresak)",
|
||||||
|
"amount": "€20.000 arte",
|
||||||
|
"description": "Transformazio digital iraunkorra"
|
||||||
|
},
|
||||||
|
"regional": {
|
||||||
|
"title": "Autonomi Erkidegoetako Ekonomia Zirkularreko Laguntzak",
|
||||||
|
"amount": "Aldakorra",
|
||||||
|
"description": "Zure autonomi erkidegoaren araberakoa"
|
||||||
|
},
|
||||||
|
"tax": {
|
||||||
|
"title": "Zerga Onak",
|
||||||
|
"amount": "%25 arte murrizketa",
|
||||||
|
"description": "Iraunkortasuneko inbertsioagatik kenkaria"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"how_it_works": {
|
||||||
|
"title": "Nola funtzionatzen duen:",
|
||||||
|
"item1": "Bakery-IAk txosten automatikoak sortzen ditu",
|
||||||
|
"item2": "Hondakinen murrizketaren metrikak (kg CO₂, ur litroak)",
|
||||||
|
"item3": "Eskaerei dokumentazioa prest",
|
||||||
|
"item4": "Prozesuarekin laguntzen dizugu"
|
||||||
|
},
|
||||||
|
"impact": {
|
||||||
|
"co2": "hilean murriztuta (3 zuhaitz landatzearen baliokidea)",
|
||||||
|
"water": "urtean ura aurreztuta",
|
||||||
|
"certification": "Ziurtagiria",
|
||||||
|
"certification_desc": "NBE GIH 12.3"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"business_models": {
|
||||||
|
"title": "Edozein Negozio Eredutarako",
|
||||||
|
"subtitle": "Nola lan egiten duzun axola ez du, zuretzat funtzionatzen du",
|
||||||
|
"local": {
|
||||||
|
"title": "Tokiko Ekoizpen Okindegi",
|
||||||
|
"description": "Toki berean labean sartu eta saltzen duzu",
|
||||||
|
"benefit1": "IAk eguneko ekoizpena optimizatzen du",
|
||||||
|
"benefit2": "Puntu bakarreko inbentarioa kudeatzen du"
|
||||||
|
},
|
||||||
|
"central": {
|
||||||
|
"title": "Lantegi Zentrala + Salmenta Puntuak",
|
||||||
|
"description": "Lantegian ekoizten duzu, dendetan banatzen duzu",
|
||||||
|
"benefit1": "IAk salmenta puntu bakoitzeko eskaria aurreikusten du",
|
||||||
|
"benefit2": "Banaketa eta garraioa optimizatzen du",
|
||||||
|
"benefit3": "Inbentario zentrala + puntuak kudeatzen ditu"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"cta": {
|
||||||
|
"title": "Ikusi Bakery-IA Lan Egiten",
|
||||||
|
"subtitle": "Eskatu zure okindegiaren demo pertsonalizatua",
|
||||||
|
"button": "Demo Eskatu"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,337 +1,273 @@
|
|||||||
{
|
{
|
||||||
"navigation": {
|
|
||||||
"features": "Ezaugarriak",
|
|
||||||
"benefits": "Onurak",
|
|
||||||
"pricing": "Prezioak",
|
|
||||||
"faq": "Maiz Egiten Diren Galderak"
|
|
||||||
},
|
|
||||||
"hero": {
|
"hero": {
|
||||||
"badge": "AA Aurreratua Okindegirentzat",
|
"scarcity_badge": "🔥 20tik 12 plaza bakarrik geratzen dira pilotu programan",
|
||||||
"badge_sustainability": "Elikagai Hondakinen Murrizketa",
|
"badge": "AA Aurreratua Okindegi Modernoetarako",
|
||||||
"title_line1": "Handitu Irabaziak,",
|
"title_line1": "Utzi Galtzea €2,000 Hilean",
|
||||||
"title_line2": "Murriztu Hondakinak",
|
"title_line2": "Inork Erosten Ez Duen Ogian",
|
||||||
"subtitle": "AA plataforma okindegiek saldu behar duten zehatz-mehatz ekoizteko. Murriztu elikagai hondakinak, hobetu marjinak eta aurreztu denbora plangintzan. Zure datuak 100% zureak dira.",
|
"subtitle": "IAk aurreikusten du zehatz-mehatz bihar zer salduko duzun. Ekoiztu justua. Murriztu hondakinak. Handitu irabaziak. <strong>3 hilabete doan lehenengo 20 okindegientzat</strong>.",
|
||||||
"pilot_banner": {
|
"cta_primary": "Eskatu Pilotuko Plaza",
|
||||||
"title": "Pilotu Abiapena!",
|
"cta_secondary": "Ikusi Nola Lan Egiten Duen (2 min)",
|
||||||
"offer": "3 HILABETE DOAN",
|
"trust": {
|
||||||
"description": "pilotura lehen batzen direnei"
|
"no_cc": "3 hilabete doan",
|
||||||
|
"card": "Txartela beharrezkoa",
|
||||||
|
"quick": "Prest 10 minututan",
|
||||||
|
"spanish": "Laguntza euskeraz"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"problems": {
|
||||||
|
"title": "Konpontzen Dugun Arazoa",
|
||||||
|
"subtitle": "Okindegi bat baduzu, zehatz-mehatz dakizu zer diogun",
|
||||||
|
"problem1": {
|
||||||
|
"title": "Egunero 50 ogi botatzen dituzu \"badaezpada\"",
|
||||||
|
"description": "50 ogi × €2 = €100/egunean = €3,000/hilean zakarrontzian. Eta ogian bakarrik."
|
||||||
},
|
},
|
||||||
"cta_primary": "Hasi Doan Orain",
|
"problem2": {
|
||||||
"cta_secondary": "Ikusi Demoa",
|
"title": "Bezeroak hutsik alde egiten dute",
|
||||||
"features": {
|
"description": "\"Croissantik ez duzu 14:00etan\" = salmenta galduak + bezero haserre."
|
||||||
"card_required": "Txartela beharrezkoa • 3 hilabete doan",
|
},
|
||||||
"no_credit_card": "Txartela beharrezkoa • 3 hilabete doan",
|
"problem3": {
|
||||||
"quick_setup": "Prest minutuetan, ez orduetan",
|
"title": "\"Begira\" planifikatzen duzu Excel-ekin",
|
||||||
"support_24_7": "Laguntza pertsonalizatua euskeraz"
|
"description": "Esperientzia eta barrunbe sentimenduetan oinarrituta. Funtzionatzen du... funtzionatu arte."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"solutions": {
|
||||||
|
"title": "Irtenbidea",
|
||||||
|
"subtitle": "IAk ezagutzen ditu ZURE okindeg ia, ZURE auzo a, ZURE bezeroak",
|
||||||
|
"solution1": {
|
||||||
|
"title": "Benetako eskaria aurreikusten du (%92ko zehaztasunarekin)",
|
||||||
|
"description": "Badaki bihar astelehen euritsu bat dela, eskola itxita, merkatu ezeztatua → 78 croissant salduko dituzu (ez 100)."
|
||||||
|
},
|
||||||
|
"solution2": {
|
||||||
|
"title": "Sistema automatikoa goiz bakoitzean",
|
||||||
|
"description": "5:30etan goizean: inbentarioa berrikusten, salmentak aurreikusten, ekoizpena planifikatzen, eskaerak sortzen. 6:00etan iristen zara eta dena prest dago."
|
||||||
|
},
|
||||||
|
"solution3": {
|
||||||
|
"title": "Zure datuak = zure diru-laguntzak",
|
||||||
|
"description": "Datuak 100% zureak + hondakinen murrizketa ziurtatua = €50,000ko sarbidea Europako iraunkortasuneko laguntzetara."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"pillars": {
|
||||||
|
"badge": "Sistemaren 3 Gakoak",
|
||||||
|
"title": "Zergatik Funtzionatzen Duen Zure Okindegirako",
|
||||||
|
"subtitle": "Ez da magia. ZURE errealitateari aplikatutako matematika da.",
|
||||||
|
"pillar1": {
|
||||||
|
"title": "🎯 Aurreikusten du Eskaria Zure Eremuaren Datuekin",
|
||||||
|
"intro": "IAk ezagutzen du zure auzoa, ez bakarrik egutegia. Badaki ondoko eskola abuztuan itxi egiten dela, ostiral bakoitzean zure plazan merkatua dagoela, eta beste okindegi bat 500m-ra ireki dela.",
|
||||||
|
"schools": {
|
||||||
|
"title": "Inguruko Eskolak",
|
||||||
|
"item1": "\"CEIP San José 200m-ra dago\"",
|
||||||
|
"item2": "\"Abuztuan salmentak %40 murrizten dira (eskola-oporrak)\"",
|
||||||
|
"item3": "\"Astelehenetan 8:30etan gailurra (gurasoak seme-alabak utzi ondoren)\""
|
||||||
|
},
|
||||||
|
"competition": {
|
||||||
|
"title": "Zure Lehia",
|
||||||
|
"item1": "\"Beste okindegi bat ireki zen duela 2 hilabete 500m-ra\"",
|
||||||
|
"item2": "\"Eragina: -%15 oinarrizko ogiaren salmentetan\"",
|
||||||
|
"item3": "\"Aukera: Bereizi espezialtateekin\""
|
||||||
|
},
|
||||||
|
"weather": {
|
||||||
|
"title": "Zure Eremuaren Eguraldia",
|
||||||
|
"item1": "\"AEMET datuak zure posta kodetik\"",
|
||||||
|
"item2": "\"Euria → -%20 croissant, +%10 opil ogi\"",
|
||||||
|
"item3": "\"Beroa → +%30 produktu freskoak\""
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"title": "Tokiko Ekitaldiak",
|
||||||
|
"item1": "\"Ostiraleko azoka Plaza Mayorrean (500m)\"",
|
||||||
|
"item2": "\"Auzoaren jaiak datorren astean\"",
|
||||||
|
"item3": "\"Partida garrantzitsua → ekitaldi aurreko salmenten gailurra\""
|
||||||
|
},
|
||||||
|
"accuracy": "Zehaztasuna: %92 (vs %60-70 sistema generikoetan)",
|
||||||
|
"cta": "Ikusi Ezaugarri Guztiak"
|
||||||
|
},
|
||||||
|
"pillar2": {
|
||||||
|
"title": "🤖 Sistema Automatikoa Goiz Bakoitzean",
|
||||||
|
"intro": "Imajinatu laguntzaile super antolatua kontratatzen duzula, 5:30ean goizean (zu baino lehen) iristen dena eta hau guztia AUTOMATIKOKI egiten duena:",
|
||||||
|
"step1": {
|
||||||
|
"title": "5:30etan goizean - Zure Inbentario Osoa Berrikusten Du",
|
||||||
|
"item1": "Irin kilo bakoitza, esne litro bakoitza zenbatzen du",
|
||||||
|
"item2": "Iraungitze datak egiaztatzen ditu",
|
||||||
|
"item3": "Gaur hornitzaileetatik zer iristen den ikusten du"
|
||||||
|
},
|
||||||
|
"step2": {
|
||||||
|
"title": "5:35ean goizean - Gaurko Salmentak Aurreikusten Ditu",
|
||||||
|
"item1": "Eguna aztertzen du (astelehen euritsu bat, toki-jai bat, eskola itxita)",
|
||||||
|
"item2": "Antzeko iraganeko egunekin konparatzen du",
|
||||||
|
"item3": "Esaten dizu: \"Gaur 80 croissant, 120 ogi, 50 madalena salduko dituzu\""
|
||||||
|
},
|
||||||
|
"step3": {
|
||||||
|
"title": "5:40an goizean - Zer Egin Behar Den Planifikatzen Du",
|
||||||
|
"item1": "Zehazki zenbat labean sartu behar den kalkulatzen du",
|
||||||
|
"item2": "Exekutatzeko prest dagoen zerrenda bat ematen dizu",
|
||||||
|
"item3": "\"Egin 80 croissant (ez 100), erabili 5kg gurin, 3kg irin...\""
|
||||||
|
},
|
||||||
|
"step4": {
|
||||||
|
"title": "5:45ean goizean - Inbentarioa Adimentsu Kudeatzen Du",
|
||||||
|
"projection_title": "7 egun aurrera proiektatzen ditu:",
|
||||||
|
"day1": "Gaur: 50kg irin",
|
||||||
|
"day2": "Bihar: 42kg",
|
||||||
|
"day3": "Etzi: 30kg",
|
||||||
|
"day4": "4. eguna: 15kg",
|
||||||
|
"day5": "5. eguna: Irinik gabe geratuko zinateke",
|
||||||
|
"solution_title": "IRTENBIDE AUTOMATIKOA:",
|
||||||
|
"solution": "\"Eskatu 50kg gaur, 3 egunetan iristen da, arazoa konponduta\""
|
||||||
|
},
|
||||||
|
"step5": {
|
||||||
|
"title": "5:50ean goizean - Hornitzaileentzako Eskaerak Sortzen Ditu",
|
||||||
|
"item1": "Hornitzaile A-k 3 egun behar dituela badaki, Hornitzaile B-k 5",
|
||||||
|
"item2": "Noiz eskatu behar den kalkulatzen du zehatz-mehatz heltzeko",
|
||||||
|
"item3": "Klik batekin onartzeko prest dauden eskaerak prestatzen ditu"
|
||||||
|
},
|
||||||
|
"result": {
|
||||||
|
"title": "6:00etan goizean - Email bat Jasotzen Duzu",
|
||||||
|
"item1": "Eguneko iragarpena eginda ✅",
|
||||||
|
"item2": "Ekoizpen plana prest ✅",
|
||||||
|
"item3": "3 eskaera sortuta (klik batekin onartu) ✅",
|
||||||
|
"item4": "Alerta: \"Esnea 2 egunetan iraungitzen da, lehenik erabili\" ⚠️"
|
||||||
|
},
|
||||||
|
"eliminates": {
|
||||||
|
"title": "Zure erretinatik KENTZEN duena:",
|
||||||
|
"item1": "❌ Zenbat egin asmatu",
|
||||||
|
"item2": "❌ Inbentarioa eskuz zenbatu",
|
||||||
|
"item3": "❌ Hornitzaileei noiz eskatu kalkulatu",
|
||||||
|
"item4": "❌ Iraungitze datak gogoratu",
|
||||||
|
"item5": "❌ Stockik gabe geratzeko ardura",
|
||||||
|
"item6": "❌ Iraungitako osagaiak galdu"
|
||||||
|
},
|
||||||
|
"cta": "Ikusi Ezaugarri Guztiak"
|
||||||
|
},
|
||||||
|
"pillar3": {
|
||||||
|
"title": "📊 Zure Datuak, Zure Diru-laguntzak",
|
||||||
|
"intro": "Zure datu operatiboak 100% zureak dira. Inoiz partekatuak. Inoiz salduak. Eta gainera, Europako finantziaziora ateak irekitzen dizkizu.",
|
||||||
|
"data_ownership": {
|
||||||
|
"title": "Datuen %100eko Jabetza",
|
||||||
|
"item1": "Zure salmentak, inbentarioa, hornitzaileak, errezetak: guztiak zureak",
|
||||||
|
"item2": "RGPD betetzea bermatuta (Espainiako enpresa)",
|
||||||
|
"item3": "Esportatu zure datuak nahi duzunean, nahi duzun tokira"
|
||||||
|
},
|
||||||
|
"sustainability": {
|
||||||
|
"title": "Hondakinen Murrizketa Ziurtatua",
|
||||||
|
"intro": "Ezer gehigarri egin gabe, Nazio Batuen Garapen Iraunkorreko 12.3 Helburua betetzen duzu (elikagaien hondakinen murrizketa).",
|
||||||
|
"item1": "Ziurtagiri automatikoa jasotzen duzu",
|
||||||
|
"item2": "Ingurumen-inpaktuaren metrikak (kg CO₂, ur litroak)",
|
||||||
|
"item3": "Diru-laguntzen eskaerako txostenak prest"
|
||||||
|
},
|
||||||
|
"grants": {
|
||||||
|
"title": "€50,000ko Sarbidea Europako Laguntzetara",
|
||||||
|
"pima": "PIMA Adapta (MITECO) - €50,000 arte",
|
||||||
|
"tourism": "Turismo Iraunkortasuneko Planak - €30,000 arte",
|
||||||
|
"moves": "MOVES Zirkularra (Enpresak) - €20,000 arte",
|
||||||
|
"regional": "Autonomi Erkidegoetako Ekonomia Zirkularreko Laguntzak - Aldakorra",
|
||||||
|
"tax": "Zerga Onak - %25 arte murrizketa",
|
||||||
|
"help": "Eskaera prozesuan laguntzen dizugu"
|
||||||
|
},
|
||||||
|
"impact": {
|
||||||
|
"co2": "hilean murriztuta",
|
||||||
|
"co2_equivalent": "(3 zuhaitz landatzearen baliokidea)",
|
||||||
|
"water": "urtean ura aurreztuta",
|
||||||
|
"certification": "NBE GIH 12.3 Ziurtatua"
|
||||||
|
},
|
||||||
|
"cta": "Ikusi Ezaugarri Guztiak"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"how_it_works": {
|
||||||
|
"title": "Nola Hasi",
|
||||||
|
"subtitle": "3 urrats. 10 minutu. Prest.",
|
||||||
|
"step1": {
|
||||||
|
"title": "Igo 6-12 hilabeteko salmenta datuak",
|
||||||
|
"description": "Hilabete gehiago = aurreikuspena zehatzagoak. 6 hilabete bakarrik badituzu, ongi funtzionatzen du, baina denborarekin hobetzen da.",
|
||||||
|
"time": "5 minutu"
|
||||||
|
},
|
||||||
|
"step2": {
|
||||||
|
"title": "IAk ZURE okindegiaren berri ikasten du",
|
||||||
|
"description": "Zure ereduak, produktuak, denboraldiak aztertzen ditu. Ez duzu ezer konfiguratu behar.",
|
||||||
|
"time": "Automatikoa"
|
||||||
|
},
|
||||||
|
"step3": {
|
||||||
|
"title": "Hasiko zara aurreikuspenak jasotzen",
|
||||||
|
"description": "Goiz bakoitzean 6:00etan: eguneko iragarpena, ekoizpen plana, onartzeko eskaerak.",
|
||||||
|
"time": "Hurrengo eguna"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pilot": {
|
"pilot": {
|
||||||
"banner": {
|
"badge": "Pilotu Programa - 20 Plaza Bakarrik",
|
||||||
"active": "Pilotu Programa Aktibatuta",
|
|
||||||
"trial_applied": "3 hilabete doan automatikoki aplikatuta",
|
|
||||||
"coupon_code": "Kodea",
|
|
||||||
"description": "Gure pilotu programa esklusibora hautatu zaitu"
|
|
||||||
},
|
|
||||||
"badge": "Pilotu Programa - Leku Mugatuak",
|
|
||||||
"title": "20 Okindegi Aitzindari Bilatzen",
|
"title": "20 Okindegi Aitzindari Bilatzen",
|
||||||
"subtitle": "Lehenengo 20 okindegiak hautatzen ari gara gure pilotu programa esklusiboa osatzeko. Zure feedbackaren truke, lortuko duzu <strong>3 hilabete doan + bizitza osoko prezio lehentasuna</strong>.",
|
"subtitle": "Ez da guztientzat. Lehenengo 20 okindegiak hautatzen ari gara gure pilotu programa esklusiboa osatzeko.",
|
||||||
"benefits": {
|
|
||||||
"founders_beta": {
|
|
||||||
"title": "Sortzaileen Beta",
|
|
||||||
"description": "Bizitza osoko sarbidea %20 deskontuarekin"
|
|
||||||
},
|
|
||||||
"influence_product": {
|
|
||||||
"title": "Eragin Produktuan",
|
|
||||||
"description": "Zure beharrek moldatzen dute plataforma"
|
|
||||||
},
|
|
||||||
"premium_support": {
|
|
||||||
"title": "Premium Laguntza",
|
|
||||||
"description": "Sortzaile taldearen zuzeneko arreta"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"features": {
|
|
||||||
"title_main": "Borrokatu Elikagai Hondakinen Aurka",
|
|
||||||
"title_accent": "Adimen Artifizialarekin",
|
|
||||||
"badge": "Azken Belaunaldiko AA Teknologia",
|
|
||||||
"subtitle": "Teknologia handiko sistema, AA algoritmo aurreratuak erabiltzen dituena zure ekoizpena optimizatzeko, elikagai hondakinak murrizteko eta zure datuak %100 seguru eta zure kontrolpean mantentzeko.",
|
|
||||||
"ai_prediction": {
|
|
||||||
"title": "AA Aurreikuspen Aurreratua",
|
|
||||||
"description": "Azken belaunaldiko ikaskuntza automatikoko algoritmoek historikoa, eguraldia, ekitaldiak eta joerak aztertzen dituzte eskaria zehaztasun kirurgikoz aurreikusteko.",
|
|
||||||
"features": {
|
|
||||||
"accuracy": "%92ko zehaztasuna aurreikuspenen",
|
|
||||||
"learning": "Ikaskuntza etengabe eta moldagarria",
|
|
||||||
"realtime": "Denbora errealeko analitika aurreikuspena"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"waste_reduction": {
|
|
||||||
"title": "Hondakinen Murrizketa",
|
|
||||||
"description": "Lagundu ingurumenari eta murriztu kostuak %35era elikagai hondakinak kenduz ekoizpen optimizatu eta adimendunaren bidez.",
|
|
||||||
"features": {
|
|
||||||
"reduction": "%35era arte hondakin gutxiago",
|
|
||||||
"savings": "€800/hilabeteko batez besteko aurrezkia",
|
|
||||||
"eligible": "EBko laguntzarako kualifikatua"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"data_ownership": {
|
|
||||||
"title": "Zure Datuak, Zure Jabetza",
|
|
||||||
"description": "Pribatutasun eta segurtasun osoa. Zure datu operatiboak, hornitzaileak eta analitikak %100 zure kontrolpean geratzen dira. Inoiz partekatua, inoiz saldua.",
|
|
||||||
"features": {
|
|
||||||
"ownership": "%100 datuen jabetza",
|
|
||||||
"privacy": "Pribatutasun kontrol osoa",
|
|
||||||
"gdpr": "DBEO betetze bermatua"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"smart_inventory": {
|
|
||||||
"title": "Inbentario Adimenduna",
|
|
||||||
"description": "Stock kontrol automatikoa alerta aurreikuspenekin, erosketako agindu automatizatuekin eta lehengaien kostu optimizazio erreala denbora errealean.",
|
|
||||||
"features": {
|
|
||||||
"alerts": "Stock baxuko alerta automatikoak",
|
|
||||||
"orders": "Erosketako agindu automatizatuak",
|
|
||||||
"optimization": "Lehengaien kostu optimizazioa"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"production_planning": {
|
|
||||||
"title": "Ekoizpen Planifikazioa",
|
|
||||||
"description": "Automatikoki programatu egunero ekoizpena AA aurreikuspenen arabera, optimizatu ordutegiak, baliabideak eta maximizatu zure labeen eraginkortasuna.",
|
|
||||||
"features": {
|
|
||||||
"scheduling": "Labe programazio automatikoa",
|
|
||||||
"oven": "Labe erabilera optimizazioa",
|
|
||||||
"staff": "Langile eta txanda kudeaketa"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"advanced_analytics": {
|
|
||||||
"title": "Analitika Aurreratua",
|
|
||||||
"description": "Denbora errealeko panelak negozioaren metrika gakoekin, produktu errentagarritasun analisia eta txosten pertsonalizagarriak datuetan oinarritutako erabakiak hartzeko.",
|
|
||||||
"features": {
|
|
||||||
"realtime": "Denbora errealeko panelak",
|
|
||||||
"profitability": "Produktu errentagarritasun analisia",
|
|
||||||
"reports": "Txosten pertsonalizagarriak"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"pos_integration": {
|
|
||||||
"title": "POS Integratua",
|
|
||||||
"description": "Salmenta sistema osoa eta erabilterraza"
|
|
||||||
},
|
|
||||||
"quality_control": {
|
|
||||||
"title": "Kalitate Kontrola",
|
|
||||||
"description": "Trazabilitate osoa eta HACCP kudeaketa"
|
|
||||||
},
|
|
||||||
"automation": {
|
|
||||||
"title": "Automatizazioa",
|
|
||||||
"description": "Denbora aurrezten duten prozesu automatikoak"
|
|
||||||
},
|
|
||||||
"cloud_based": {
|
|
||||||
"title": "Hodeian",
|
|
||||||
"description": "Sartu edozein lekutatik, beti eguneratuta"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"benefits": {
|
|
||||||
"title": "Konpontzen Dugun Arazoa",
|
|
||||||
"title_accent": "Zure Okindegirako",
|
|
||||||
"subtitle": "Badakigu zein desatsegingarria den egunaren amaieran produktua botatzea, edo bezeroek iristean stockik gabe geratzea. Okindegi ekoizpena zaila da optimizatzeko... orain arte.",
|
|
||||||
"problems": {
|
|
||||||
"waste": {
|
|
||||||
"title": "Ekoizpenaren %15-40 galtzen duzu",
|
|
||||||
"description": "Egunaren amaieran, inork erosi ez duen produktua botatzen duzu. Astero ehunka euro zakarrontzira."
|
|
||||||
},
|
|
||||||
"stockouts": {
|
|
||||||
"title": "Salmentak galtzen dituzu stockik ez delako",
|
|
||||||
"description": "Bezeroek euren ogi gogokoagatiketortzen dira eta erosi gabe joaten dira 14:00etan amaitu zarelako."
|
|
||||||
},
|
|
||||||
"manual": {
|
|
||||||
"title": "Excel, papera eta \"esperientzia\"",
|
|
||||||
"description": "Intuizioaren arabera planifikatzen duzu. Funtzionatzen du... ez duen arte."
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"solutions": {
|
|
||||||
"exact_production": {
|
|
||||||
"title": "Ekoiztu salduko duzun zehaztasun",
|
|
||||||
"description": "AA-k aztertzen ditu zure salmenta historikoa, eguraldia, tokiko ekitaldiak eta jaiak eskari erreala aurreikusteko."
|
|
||||||
},
|
|
||||||
"stock_availability": {
|
|
||||||
"title": "Beti izan gehien saltzen denaren stocka",
|
|
||||||
"description": "Sistemak jakinarazten dizu zein produktuk izango duen eskari gehiago egun bakoitzean, inoiz gabe gera ez zaitezen."
|
|
||||||
},
|
|
||||||
"smart_automation": {
|
|
||||||
"title": "Automatizazio adimenduna + datu errealak",
|
|
||||||
"description": "Ekoizpen planifikaziotik inbentario kudeaketara. Dena matematikan oinarritua, ez intuizioetan."
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"value_proposition": {
|
|
||||||
"title": "Helburua: Dirua Aurreztea Lehen Hilabetetik",
|
|
||||||
"description": "Ez ditugu hitz egiten zenbaki magikoz okindegi bakoitza desberdina delako. Hitz egiten DUGUN gauza da 3 hilabete ondoren hondakinak murriztu edo marjinak hobetu ez badituzu, <strong>doan lagunduko dizugula zure negozioa beste era batera optimizatzen</strong>.",
|
|
||||||
"points": {
|
|
||||||
"waste": "Hondakin gutxiago = irabazi gehiago",
|
|
||||||
"time": "Excel-en denbora gutxiago, zure negozioetan gehiago",
|
|
||||||
"data": "Zure datuak beti zureak dira"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"risk_reversal": {
|
|
||||||
"title": "Arriskurik Gabe. Loturak Gabe.",
|
|
||||||
"subtitle": "Gardenak gara: hau pilotu bat da. Okindegietarako tresna onena eraikitzen ari gara, eta zure laguntza behar dugu.",
|
|
||||||
"what_you_get": {
|
"what_you_get": {
|
||||||
"title": "Zer Lortzen Duzu",
|
"title": "Zer Lortzen Duzu",
|
||||||
"free_trial": "<strong>3 hilabete guztiz doan</strong> funtzionalitate guztiak probatzeko",
|
"free_trial": "3 hilabete guztiz doan",
|
||||||
"lifetime_discount": "<strong%20ko bizitza osoko deskontua</strong> pilotuaren ondoren jarraitzea erabakitzen baduzu",
|
"lifetime_discount": "%20ko deskontua bizitza osoan jarraitzen baduzu",
|
||||||
"founder_support": "<strong>Sortzaile taldearen laguntza zuzena</strong> - orduetan erantzuten dugu, ez egunetan",
|
"vip_support": "Sortzaile taldearen zuzeneko laguntza",
|
||||||
"priority_features": "<strong>Zure ideiak lehenik gauzatzen dira</strong> - benetan behar duzuna eraikitzen dugu",
|
"influence": "Zure ideiak lehenik inplementatzen dira"
|
||||||
"cancel_anytime": "<strong>Edozein unetan ezeztatu</strong> azalpenik edo zigorrekin"
|
|
||||||
},
|
},
|
||||||
"what_we_ask": {
|
"what_we_ask": {
|
||||||
"title": "Zer Eskatzen Dugu",
|
"title": "Zer Eskatzen Dugu",
|
||||||
"feedback": "<strong>Asteko feedback zintzoa</strong> (15 min) zer funtzionatzen duen eta zer ez jakiteko",
|
"feedback": "Feedback zintzoa astero (15 min)",
|
||||||
"patience": "<strong>Pazientzia erroreekin</strong> - beta faserean gaude, inperfekzioak izango dira",
|
"patience": "Pazientzia bug-ekin (beta fasean gaude)",
|
||||||
"data": "<strong>Salmenta datu historikoak</strong> (aukerakoa) aurreikuspenak hobetzeko",
|
"data": "Salmenta datu historikoak (6-12 hilabete)",
|
||||||
"communication": "<strong>Komunikazio irekia</strong> - zerbait ez bazaizu gustatzen jakin nahi dugu"
|
"communication": "Komunikazio irekia"
|
||||||
},
|
},
|
||||||
"promise": "<strong>Hitza:</strong> 3 hilabete ondoren dirua aurrezten edo hondakinak murrizten lagundu ez dizugula sentitzen baduzu, doan emango dizugu kontsultoria saio bat zure okindegia beste era batera optimizatzeko.",
|
"spots_left": "20tik 12 plaza geratzen dira",
|
||||||
"credibility": {
|
"cta": "Eskatu Pilotuko Plaza"
|
||||||
"title": "Zergatik Fidatu Gurekin?",
|
|
||||||
"subtitle": "Ulertzen dugu teknologia berria probatzea arrisku bat dela. Horregatik guztiz gardenak gara:",
|
|
||||||
"spanish": {
|
|
||||||
"title": "%100 Espainiarra",
|
|
||||||
"description": "Espainian erregistratutako enpresa. Zure datuak DBEOz babestuak daude eta inoiz ez dira EBtik irteten."
|
|
||||||
},
|
|
||||||
"technology": {
|
|
||||||
"title": "Teknologia Froogatua",
|
|
||||||
"description": "Akademikoki baliozkotutako AA algoritmoak erabiltzen ditugu, okindegietarako bereziki egokituak."
|
|
||||||
},
|
|
||||||
"team": {
|
|
||||||
"title": "Sortzaile Aditua",
|
|
||||||
"description": "Hamarkada bat baino gehiagoko nazioarteko esperientzia duen ekintzailea AA, eraldaketa digital eta balio handiko teknologia proiektuetan Europan, Asian eta Amerikan zehar"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"faq": {
|
|
||||||
"title": "Maiz Egiten Diren Galderak",
|
|
||||||
"subtitle": "Okindegi AA-ri buruz jakin behar duzun guztia",
|
|
||||||
"questions": {
|
|
||||||
"accuracy": {
|
|
||||||
"q": "Zenbat zehatz da eskari aurreikuspena?",
|
|
||||||
"a": "Gure AA-k %92ko zehaztasuna lortzen du eskari aurreikuspenean, 50 aldagai baino gehiago aztertuz: salmenta historikoa, eguraldia, tokiko ekitaldiak, denboraldia eta merkatu joerak barne. Zehaztasuna etengabe hobetzen da zure okindegiko datu gehiagorekin."
|
|
||||||
},
|
|
||||||
"implementation": {
|
|
||||||
"q": "Zenbat denbora behar da sistema inplementatzeko?",
|
|
||||||
"a": "Hasierako konfigurazioak 5 minutu baino hartzen ditu. Gure taldeak laguntzen dizu datu historikoak migratzeko 24-48 orduan. AA-k aurreikuspen baliagarriak sortzen hasten da aste bateko datuekin, zehaztasun maximoa 30 egunetan lortuz."
|
|
||||||
},
|
|
||||||
"integration": {
|
|
||||||
"q": "Nire oraingo POS sistemarekin integratzen da?",
|
|
||||||
"a": "Bai, Espainian ospetsu diren 50 POS sistema baino gehiagorekin integratzen gara. Gainera, okindegietarako optimizatutako gure POS propioa ere badaukagu. Sistema espezifiko bat erabiltzen baduzu, gure talde teknikoak integrazio pertsonalizatua sortu dezake."
|
|
||||||
},
|
|
||||||
"support": {
|
|
||||||
"q": "Zer laguntza tekniko eskaintzen duzue?",
|
|
||||||
"a": "24/7 laguntza eskaintzen dugu euskeraz txat, email eta telefonoz. Gure teknolari guztiak okindegi eragiketetako adituk dira. Gainera, onboarding pertsonalizatua eta talde prestakuntza barne dira kostu gehigarririk gabe."
|
|
||||||
},
|
|
||||||
"security": {
|
|
||||||
"q": "Nire datuak seguru daude?",
|
|
||||||
"a": "Erabat. AES-256 enkriptazioa erabiltzen dugu, EBko zerbitzariak, %100 DBEO betetze eta hiruhileko segurtasun auditoriak egiten ditugu. Zure datuak inoiz ez dira hirugarrenekin partekatzen eta kontrol osoa duzu zure informazioaren gainean."
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"business_models": {
|
|
||||||
"title": "Zure Negozio Eredua, Gure Teknologia",
|
|
||||||
"subtitle": "Leku bakarrean ekoizten eta saltzen duzun ala lantegi zentral bat hainbat salmenta punturekin kudeatzen duzun, gure AA zure lan moduari egokitzen zaio",
|
|
||||||
"local_production": {
|
|
||||||
"title": "Tokiko Ekoizpena",
|
|
||||||
"subtitle": "Salmenta eta ekoizpen puntu bakarra",
|
|
||||||
"description": "Zure okindegiak leku berean ekoizten eta saltzen du. Eguneko ekoizpena optimizatu, hondakinak minimizatu eta frekotasuna maximizatu behar duzu horneada bakoitzean.",
|
|
||||||
"features": {
|
|
||||||
"prediction": "<strong>Eskari aurreikuspena</strong> kokaleku bakarreko",
|
|
||||||
"inventory": "<strong>Inbentario kudeaketa</strong> sinplifikatua eta zuzena",
|
|
||||||
"control": "<strong>Kontrol puntu bakarra</strong> - sinplea eta eraginkorra"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"central_workshop": {
|
|
||||||
"title": "Lantegi Zentrala + Salmenta Puntuak",
|
|
||||||
"subtitle": "Ekoizpen zentralizatua, banaketa anitza",
|
|
||||||
"description": "Zentral ekoizten duzu eta hainbat salmenta puntura banatzen duzu. Ekoizpena, logistika eta eskaria kokagune artean koordinatu behar dituzu puntu bakoitza optimizatzeko.",
|
|
||||||
"features": {
|
|
||||||
"prediction": "<strong>Agregatu eta salmenta puntu bakoitzeko</strong> bereizitako aurreikuspena",
|
|
||||||
"distribution": "<strong>Banaketa kudeaketa</strong> koordiatutako hainbat kokaleku",
|
|
||||||
"visibility": "<strong>Ikusgarritasun zentralizatua</strong> kontrol zehatzekin"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"same_ai": "AA indartsu bera, zure lan moduari egokitua"
|
|
||||||
},
|
},
|
||||||
"pricing": {
|
"pricing": {
|
||||||
"title": "Zure Negozioari Egokitzen Zaizkion Planak",
|
"badge": "Prezio Gardenak",
|
||||||
"subtitle": "Ezkutuko kosturik gabe, konpromiso luzerik gabe. Hasi doan eta handitu zure hazkundea",
|
"title": "Plan Bakarra. Sorpresarik Gabe.",
|
||||||
"compare_link": "Ikusi ezaugarrien konparazio osoa"
|
"subtitle": "3 hilabete doan pilotoetarako. Gero €99/hilean (edo €79/hilean bizitza osoko deskontuarekin piloto izan bazinen).",
|
||||||
},
|
"plan": {
|
||||||
"sustainability": {
|
"name": "Bakery-IA Osoa",
|
||||||
"badge": "NBEren GIH 12.3 eta EBren Itun Berdearekin Lerrokatuta",
|
"pilot_price": "€0/hilean",
|
||||||
"title_main": "Ez Bakarrik Hondakinak Murriztu",
|
"pilot_period": "Lehenengo 3 hilabeteak (pilotua)",
|
||||||
"title_accent": "Frogatu Munduari",
|
"regular_price": "€99/hilean",
|
||||||
"subtitle": "AA plataforma bakarra NBEren GIH 12.3 betetze jarraipen integratua duena. Murriztu hondakinak, aurreztu dirua eta kualifikatu EBko iraunkortasun laguntzarako—ingurumen eraginaren metrika egiaztagarriekin.",
|
"pilot_discount_price": "€79/hilean",
|
||||||
"metrics": {
|
"pilot_discount_note": "%20ko deskontua bizitza osoan piloto izan bazinen",
|
||||||
"co2_avoided": "CO₂ Saihestu Hilero",
|
|
||||||
"co2_equivalent": "43 zuhaitz landatzeko baliokidea",
|
|
||||||
"water_saved": "Ura Aurreztua Hilero",
|
|
||||||
"water_equivalent": "4,500 dutxaren baliokidea",
|
|
||||||
"grants_eligible": "Laguntza Programa Kualifikatuak",
|
|
||||||
"grants_value": "€50,000ra arte finantzaketan"
|
|
||||||
},
|
|
||||||
"sdg": {
|
|
||||||
"title": "NBEren GIH 12.3 Betetzea",
|
|
||||||
"subtitle": "Elikagai hondakinak erdira murriztea 2030erako",
|
|
||||||
"description": "Denbora errealeko jarraipena NBEren Garapen Iraunkorreko 12.3 helbururantz. Gure AA-k laguntzen dizu %50eko murrizketa lortzeko datu egiaztagarri eta audita daitekeenekin laguntza eskaera eta ziurtagirietarako.",
|
|
||||||
"progress_label": "Helbururantz Aurrerapena",
|
|
||||||
"baseline": "Oinarri Lerroa",
|
|
||||||
"current": "Oraingoa",
|
|
||||||
"target": "2030 Helburua",
|
|
||||||
"features": {
|
"features": {
|
||||||
"tracking": "Hondakinen oinarri lerro eta aurrerapen jarraipen automatikoa",
|
"prediction": "IArekin eskariaren aurreikuspena",
|
||||||
"export": "Klik batean laguntza eskaera txostenen esportazioa",
|
"inventory": "Inbentarioaren kudeaketa automatikoa",
|
||||||
"certification": "Ziurtagirirako prest ingurumen eraginaren datuak"
|
"production": "Ekoizpenaren planifikazioa",
|
||||||
|
"orders": "Eskaerak automatikoki sortzea",
|
||||||
|
"analytics": "Analytics eta txosten aurreratuak",
|
||||||
|
"sustainability": "Iraunkortasuneko metrikak (NBE GIH 12.3)",
|
||||||
|
"grants": "Europako diru-laguntzetarako dokumentazioa",
|
||||||
|
"support": "Lehentasuneko laguntza euskeraz",
|
||||||
|
"data": "Datuen %100eko jabetza"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"grants": {
|
"guarantee": "Edonoiz ezeztatu azalpenik eman gabe",
|
||||||
"life_circular_economy": "LIFE Programa - Ekonomia Zirkularra",
|
"cta": "Eskatu Pilotuko Plaza"
|
||||||
"life_circular_economy_req": "%15eko murrizketa behar du",
|
},
|
||||||
"life_circular_economy_funding": "€73M eskuragarri",
|
"faq": {
|
||||||
"horizon_europe_cluster_6": "Horizonte Europa 6. multzoa",
|
"badge": "Maiz Egiten Diren Galderak",
|
||||||
"horizon_europe_cluster_6_req": "%20ko murrizketa behar du",
|
"title": "Beti Galdetzen Digutena",
|
||||||
"horizon_europe_cluster_6_funding": "€880M+ urtero",
|
"subtitle": "Erantzun zintzo galdera errealei",
|
||||||
"fedima_sustainability_grant": "Fedima Iraunkortasun Diru-laguntza",
|
"q1": {
|
||||||
"fedima_sustainability_grant_req": "%15eko murrizketa behar du",
|
"question": "Benetan funtzionatzen du 6 hilabeteko datuekin bakarrik?",
|
||||||
"fedima_sustainability_grant_funding": "€20.000 proiektuko",
|
"answer": "Bai. 6 hilabeterekin oinarrizko ereduak detekta ditzakegu (asteko eguna, gehien saltzen diren produktuak). 12 hilabeterekin, IAk denboraldiak ikasten ditu (abuztua vs abendua). Ideala 12 hilabete dira, baina 6 hilabete nahikoa da hasteko."
|
||||||
"eit_food_retail": "EIT Food - Salmenta Berrikuntza",
|
|
||||||
"eit_food_retail_req": "%20ko murrizketa behar du",
|
|
||||||
"eit_food_retail_funding": "€15-45k proiektuko",
|
|
||||||
"un_sdg": "NBEren GIH 12.3 Ziurtagiria",
|
|
||||||
"un_sdg_req": "%50eko murrizketa behar du",
|
|
||||||
"eligible": "Kualifikatua",
|
|
||||||
"on_track": "Bidean"
|
|
||||||
},
|
},
|
||||||
"differentiator": {
|
"q2": {
|
||||||
"title": "AA Plataforma Bakarra",
|
"question": "Zer gertatzen da nire datuak desastre bat badira?",
|
||||||
"description": "NBEren GIH 12.3 jarraipen integratua, ingurumen eraginaren denbora errealeko kalkuluak eta klik batean laguntza eskaerak esportatzeko aukerarekin. Ez bakarrik hondakinak murriztu—frogatu."
|
"answer": "Gure taldeak laguntzen dizu garbitzen. Excel-en, paperean edo edozein formatutan salmentak badituzu, doan migratzen ditugu pilotuaren bitartean. Behar duguna bakarrik: data, saldutako produktua, kantitatea. Gainerakoa guk konpontzen dugu."
|
||||||
|
},
|
||||||
|
"q3": {
|
||||||
|
"question": "Zuen POS-a erabili behar dut ala nirearekin jarrai dezaket?",
|
||||||
|
"answer": "Zure POS aktualarekinen jarrai dezakezu gustatzen bazaizu. Gehiengo sistemekin integratzen gara. Okindegietarako optimizatutako gure POS propioa ere eskaintzen dugu (aukerakoa, planean sartuta)."
|
||||||
|
},
|
||||||
|
"q4": {
|
||||||
|
"question": "Zer gertatzen da 3 hilabete doanaren ondoren?",
|
||||||
|
"answer": "Zuk erabakitzen duzu. Jarraitu nahi baduzu, €79/hilean ordaintzen duzu (%20ko deskontua bizitza osoan piloto izateagatik). Bestela, ezeztatu azalpenik edo zigorrrik gabe. Zure datuak beti zureak dira eta nahi duzun tokira eramango ditugu."
|
||||||
|
},
|
||||||
|
"q5": {
|
||||||
|
"question": "Zergatik fidatu behar dut zuengan?",
|
||||||
|
"answer": "Galdera ona. Espainian erregistratutako enpresa bat gara, RGPD betetzen dugu, zure datuak inoiz ez dira EBtik ateratzen. Sortzaileak hamarkada bat baino gehiagoko esperientzia du IAn. Baina garrantzitsuena: 3 hilabeteko ondoren dirua aurreztea laguntzen ez badizugu, doan aholkularitza emango dizugu zure okindeg ia beste modu batean optimizatzeko. Arriskurik gabe zuretzat."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"final_cta": {
|
"final_cta": {
|
||||||
"scarcity_badge": "12 leku geratzen dira pilotu programako 20tik",
|
"scarcity_badge": "🔥 20tik 12 plaza bakarrik geratzen dira",
|
||||||
"title": "Izan Lehenengo 20 Okindegien Artean",
|
"title": "Izan Lehenengo 20 Okindegien Artean",
|
||||||
"title_accent": "Teknologia Hau Probatzen",
|
"title_accent": "Teknologia Hau Probatzeko",
|
||||||
"subtitle": "Ez da guztiontzat. Okindegiak bilatzen ditugu <strong>hondakinak murriztu eta irabaziak handitu</strong> nahi dutenak AA laguntzarekin, feedback zintzoengatik.",
|
"subtitle": "Ez da guztientzat. Hondakinak murriztu eta irabaziak handitu nahi dituzten okindegiak bilatzen ari gara IAren laguntzarekin, feedback zintzoaren truke.",
|
||||||
"cta_primary": "Eskatu Lekua Pilotuan",
|
"cta_primary": "Eskatu Pilotuko Plaza",
|
||||||
"cta_secondary": "Ikusi Nola Funtzionatzen Duen",
|
"cta_secondary": "Ikusi Demoa (2 min)",
|
||||||
"why_now": {
|
"guarantee": "Bermea: 3 hilabete doan. Ezeztatu edonoiz. Arriskurik gabe."
|
||||||
"title": "Zergatik jardun orain?",
|
|
||||||
"lifetime_discount": {
|
|
||||||
"title": "%20 bizitza osoko deskontua",
|
|
||||||
"subtitle": "Lehenengo 20entzat bakarrik"
|
|
||||||
},
|
|
||||||
"influence": {
|
|
||||||
"title": "Eragin bide-orrian",
|
|
||||||
"subtitle": "Zure beharrak lehenik"
|
|
||||||
},
|
|
||||||
"vip_support": {
|
|
||||||
"title": "VIP Laguntza",
|
|
||||||
"subtitle": "Zuzeneko talderako sarbidea"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"guarantee": "Bermea: Ezeztatu edozein unetan azalpenik eman gabe"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
916
frontend/src/pages/public/FeaturesPage.tsx
Normal file
916
frontend/src/pages/public/FeaturesPage.tsx
Normal file
@@ -0,0 +1,916 @@
|
|||||||
|
import React from 'react';
|
||||||
|
import { Link } from 'react-router-dom';
|
||||||
|
import { useTranslation } from 'react-i18next';
|
||||||
|
import { PublicLayout } from '../../components/layout';
|
||||||
|
import { Button } from '../../components/ui';
|
||||||
|
import { getDemoUrl } from '../../utils/navigation';
|
||||||
|
import {
|
||||||
|
Clock,
|
||||||
|
MapPin,
|
||||||
|
TrendingUp,
|
||||||
|
Recycle,
|
||||||
|
Leaf,
|
||||||
|
Store,
|
||||||
|
CheckCircle2,
|
||||||
|
Calendar,
|
||||||
|
Package,
|
||||||
|
AlertTriangle,
|
||||||
|
Euro,
|
||||||
|
Globe,
|
||||||
|
School,
|
||||||
|
Building2,
|
||||||
|
Dumbbell,
|
||||||
|
ShoppingBag,
|
||||||
|
Cloud,
|
||||||
|
PartyPopper,
|
||||||
|
ArrowRight,
|
||||||
|
Zap,
|
||||||
|
Target,
|
||||||
|
TreeDeciduous,
|
||||||
|
Droplets,
|
||||||
|
Award
|
||||||
|
} from 'lucide-react';
|
||||||
|
|
||||||
|
const FeaturesPage: React.FC = () => {
|
||||||
|
const { t } = useTranslation();
|
||||||
|
|
||||||
|
return (
|
||||||
|
<PublicLayout
|
||||||
|
variant="default"
|
||||||
|
contentPadding="md"
|
||||||
|
headerProps={{
|
||||||
|
showThemeToggle: true,
|
||||||
|
showAuthButtons: true,
|
||||||
|
showLanguageSelector: true,
|
||||||
|
variant: "default"
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{/* Hero Section */}
|
||||||
|
<section className="bg-gradient-to-br from-[var(--bg-primary)] via-[var(--bg-secondary)] to-[var(--color-primary)]/5 py-20">
|
||||||
|
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
||||||
|
<div className="text-center max-w-4xl mx-auto">
|
||||||
|
<h1 className="text-4xl lg:text-6xl font-extrabold text-[var(--text-primary)] mb-6">
|
||||||
|
{t('features:hero.title', 'Cómo Bakery-IA Trabaja Para Ti Cada Día')}
|
||||||
|
</h1>
|
||||||
|
<p className="text-xl text-[var(--text-secondary)] leading-relaxed">
|
||||||
|
{t('features:hero.subtitle', 'Todas las funcionalidades explicadas en lenguaje sencillo para dueños de panaderías')}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
{/* Feature 1: Automatic Daily System - THE KILLER FEATURE */}
|
||||||
|
<section className="py-20 bg-[var(--bg-primary)]">
|
||||||
|
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
||||||
|
<div className="text-center mb-16">
|
||||||
|
<div className="inline-flex items-center gap-2 bg-[var(--color-primary)]/10 text-[var(--color-primary)] px-4 py-2 rounded-full text-sm font-medium mb-6">
|
||||||
|
<Clock className="w-4 h-4" />
|
||||||
|
<span>{t('features:automatic.badge', 'La Funcionalidad Estrella')}</span>
|
||||||
|
</div>
|
||||||
|
<h2 className="text-3xl lg:text-5xl font-extrabold text-[var(--text-primary)] mb-6">
|
||||||
|
{t('features:automatic.title', 'Tu Asistente Personal Que Nunca Duerme')}
|
||||||
|
</h2>
|
||||||
|
<p className="text-xl text-[var(--text-secondary)] max-w-3xl mx-auto">
|
||||||
|
{t('features:automatic.intro', 'Imagina contratar un ayudante súper organizado que llega a las 5:30 AM (antes que tú) y hace todo esto AUTOMÁTICAMENTE:')}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="max-w-5xl mx-auto space-y-8">
|
||||||
|
{/* Step 1 */}
|
||||||
|
<div className="bg-gradient-to-r from-blue-50 to-indigo-50 dark:from-blue-900/20 dark:to-indigo-900/20 rounded-2xl p-8 border-2 border-blue-200 dark:border-blue-800">
|
||||||
|
<div className="flex gap-6 items-start">
|
||||||
|
<div className="w-16 h-16 bg-blue-600 rounded-full flex items-center justify-center text-white text-2xl font-bold flex-shrink-0">
|
||||||
|
1
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<h3 className="text-2xl font-bold text-[var(--text-primary)] mb-3">
|
||||||
|
{t('features:automatic.step1.title', 'Revisa Todo Tu Inventario')}
|
||||||
|
</h3>
|
||||||
|
<ul className="space-y-2 text-[var(--text-secondary)]">
|
||||||
|
<li className="flex items-start gap-2">
|
||||||
|
<CheckCircle2 className="w-5 h-5 text-blue-600 mt-0.5 flex-shrink-0" />
|
||||||
|
<span>{t('features:automatic.step1.item1', 'Cuenta cada kilo de harina, cada litro de leche')}</span>
|
||||||
|
</li>
|
||||||
|
<li className="flex items-start gap-2">
|
||||||
|
<CheckCircle2 className="w-5 h-5 text-blue-600 mt-0.5 flex-shrink-0" />
|
||||||
|
<span>{t('features:automatic.step1.item2', 'Comprueba fechas de caducidad')}</span>
|
||||||
|
</li>
|
||||||
|
<li className="flex items-start gap-2">
|
||||||
|
<CheckCircle2 className="w-5 h-5 text-blue-600 mt-0.5 flex-shrink-0" />
|
||||||
|
<span>{t('features:automatic.step1.item3', 'Ve qué llega hoy de proveedores')}</span>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Step 2 */}
|
||||||
|
<div className="bg-gradient-to-r from-purple-50 to-pink-50 dark:from-purple-900/20 dark:to-pink-900/20 rounded-2xl p-8 border-2 border-purple-200 dark:border-purple-800">
|
||||||
|
<div className="flex gap-6 items-start">
|
||||||
|
<div className="w-16 h-16 bg-purple-600 rounded-full flex items-center justify-center text-white text-2xl font-bold flex-shrink-0">
|
||||||
|
2
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<h3 className="text-2xl font-bold text-[var(--text-primary)] mb-3">
|
||||||
|
{t('features:automatic.step2.title', 'Predice Ventas de Hoy')}
|
||||||
|
</h3>
|
||||||
|
<ul className="space-y-2 text-[var(--text-secondary)]">
|
||||||
|
<li className="flex items-start gap-2">
|
||||||
|
<CheckCircle2 className="w-5 h-5 text-purple-600 mt-0.5 flex-shrink-0" />
|
||||||
|
<span>{t('features:automatic.step2.item1', 'Analiza el día (lunes lluvioso, fiesta local, colegio cerrado)')}</span>
|
||||||
|
</li>
|
||||||
|
<li className="flex items-start gap-2">
|
||||||
|
<CheckCircle2 className="w-5 h-5 text-purple-600 mt-0.5 flex-shrink-0" />
|
||||||
|
<span>{t('features:automatic.step2.item2', 'Compara con días similares del pasado')}</span>
|
||||||
|
</li>
|
||||||
|
<li className="flex items-start gap-2">
|
||||||
|
<CheckCircle2 className="w-5 h-5 text-purple-600 mt-0.5 flex-shrink-0" />
|
||||||
|
<span>{t('features:automatic.step2.item3', 'Te dice: "Hoy venderás 80 croissants, 120 barras, 50 magdalenas"')}</span>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Step 3 */}
|
||||||
|
<div className="bg-gradient-to-r from-green-50 to-emerald-50 dark:from-green-900/20 dark:to-emerald-900/20 rounded-2xl p-8 border-2 border-green-200 dark:border-green-800">
|
||||||
|
<div className="flex gap-6 items-start">
|
||||||
|
<div className="w-16 h-16 bg-green-600 rounded-full flex items-center justify-center text-white text-2xl font-bold flex-shrink-0">
|
||||||
|
3
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<h3 className="text-2xl font-bold text-[var(--text-primary)] mb-3">
|
||||||
|
{t('features:automatic.step3.title', 'Planifica Qué Hacer')}
|
||||||
|
</h3>
|
||||||
|
<ul className="space-y-2 text-[var(--text-secondary)]">
|
||||||
|
<li className="flex items-start gap-2">
|
||||||
|
<CheckCircle2 className="w-5 h-5 text-green-600 mt-0.5 flex-shrink-0" />
|
||||||
|
<span>{t('features:automatic.step3.item1', 'Calcula exactamente cuánto hornear')}</span>
|
||||||
|
</li>
|
||||||
|
<li className="flex items-start gap-2">
|
||||||
|
<CheckCircle2 className="w-5 h-5 text-green-600 mt-0.5 flex-shrink-0" />
|
||||||
|
<span>{t('features:automatic.step3.item2', 'Te da una lista lista para ejecutar')}</span>
|
||||||
|
</li>
|
||||||
|
<li className="flex items-start gap-2">
|
||||||
|
<CheckCircle2 className="w-5 h-5 text-green-600 mt-0.5 flex-shrink-0" />
|
||||||
|
<span>{t('features:automatic.step3.item3', '"Haz 80 croissants (no 100), usa 5kg mantequilla, 3kg harina..."')}</span>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Step 4 - Inventory Management */}
|
||||||
|
<div className="bg-gradient-to-r from-amber-50 to-orange-50 dark:from-amber-900/20 dark:to-orange-900/20 rounded-2xl p-8 border-2 border-amber-200 dark:border-amber-800">
|
||||||
|
<div className="flex gap-6 items-start">
|
||||||
|
<div className="w-16 h-16 bg-amber-600 rounded-full flex items-center justify-center text-white text-2xl font-bold flex-shrink-0">
|
||||||
|
4
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<h3 className="text-2xl font-bold text-[var(--text-primary)] mb-3">
|
||||||
|
{t('features:automatic.step4.title', 'Gestiona Inventario Inteligentemente')}
|
||||||
|
</h3>
|
||||||
|
<div className="bg-white dark:bg-gray-800 rounded-lg p-4 mb-4 border border-amber-300 dark:border-amber-700">
|
||||||
|
<p className="text-sm font-medium text-[var(--text-secondary)] mb-2">{t('features:automatic.step4.projection_title', 'Proyecta 7 días hacia adelante:')}</p>
|
||||||
|
<div className="space-y-1 text-sm">
|
||||||
|
<div className="flex justify-between items-center">
|
||||||
|
<span className="text-[var(--text-secondary)]">{t('features:automatic.step4.day1', 'Hoy: 50kg harina')}</span>
|
||||||
|
<span className="text-green-600">✅</span>
|
||||||
|
</div>
|
||||||
|
<div className="flex justify-between items-center">
|
||||||
|
<span className="text-[var(--text-secondary)]">{t('features:automatic.step4.day2', 'Mañana: 42kg')}</span>
|
||||||
|
<span className="text-green-600">✅</span>
|
||||||
|
</div>
|
||||||
|
<div className="flex justify-between items-center">
|
||||||
|
<span className="text-[var(--text-secondary)]">{t('features:automatic.step4.day3', 'Pasado: 30kg')}</span>
|
||||||
|
<span className="text-amber-600">⚠️</span>
|
||||||
|
</div>
|
||||||
|
<div className="flex justify-between items-center">
|
||||||
|
<span className="text-[var(--text-secondary)]">{t('features:automatic.step4.day4', 'Día 4: 15kg')}</span>
|
||||||
|
<span className="text-red-600">🚨</span>
|
||||||
|
</div>
|
||||||
|
<div className="flex justify-between items-center">
|
||||||
|
<span className="text-[var(--text-secondary)]">{t('features:automatic.step4.day5', 'Día 5: Te quedarías sin harina')}</span>
|
||||||
|
<span className="text-red-600">❌</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="bg-green-100 dark:bg-green-900/30 rounded-lg p-4 border-l-4 border-green-600">
|
||||||
|
<p className="font-bold text-green-900 dark:text-green-100 mb-2">
|
||||||
|
{t('features:automatic.step4.solution_title', 'SOLUCIÓN AUTOMÁTICA:')}
|
||||||
|
</p>
|
||||||
|
<p className="text-green-800 dark:text-green-200">
|
||||||
|
{t('features:automatic.step4.solution', '"Pide 50kg hoy, llega en 3 días, problema resuelto"')}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Step 5 - Purchase Orders */}
|
||||||
|
<div className="bg-gradient-to-r from-red-50 to-rose-50 dark:from-red-900/20 dark:to-rose-900/20 rounded-2xl p-8 border-2 border-red-200 dark:border-red-800">
|
||||||
|
<div className="flex gap-6 items-start">
|
||||||
|
<div className="w-16 h-16 bg-red-600 rounded-full flex items-center justify-center text-white text-2xl font-bold flex-shrink-0">
|
||||||
|
5
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<h3 className="text-2xl font-bold text-[var(--text-primary)] mb-3">
|
||||||
|
{t('features:automatic.step5.title', 'Crea Pedidos a Proveedores')}
|
||||||
|
</h3>
|
||||||
|
<ul className="space-y-2 text-[var(--text-secondary)]">
|
||||||
|
<li className="flex items-start gap-2">
|
||||||
|
<CheckCircle2 className="w-5 h-5 text-red-600 mt-0.5 flex-shrink-0" />
|
||||||
|
<span>{t('features:automatic.step5.item1', 'Sabe que Proveedor A tarda 3 días, Proveedor B tarda 5')}</span>
|
||||||
|
</li>
|
||||||
|
<li className="flex items-start gap-2">
|
||||||
|
<CheckCircle2 className="w-5 h-5 text-red-600 mt-0.5 flex-shrink-0" />
|
||||||
|
<span>{t('features:automatic.step5.item2', 'Calcula cuándo pedir para que llegue justo a tiempo')}</span>
|
||||||
|
</li>
|
||||||
|
<li className="flex items-start gap-2">
|
||||||
|
<CheckCircle2 className="w-5 h-5 text-red-600 mt-0.5 flex-shrink-0" />
|
||||||
|
<span>{t('features:automatic.step5.item3', 'Prepara pedidos listos para aprobar con 1 clic')}</span>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Step 6 - Waste Prevention */}
|
||||||
|
<div className="bg-gradient-to-r from-teal-50 to-cyan-50 dark:from-teal-900/20 dark:to-cyan-900/20 rounded-2xl p-8 border-2 border-teal-200 dark:border-teal-800">
|
||||||
|
<div className="flex gap-6 items-start">
|
||||||
|
<div className="w-16 h-16 bg-teal-600 rounded-full flex items-center justify-center text-white text-2xl font-bold flex-shrink-0">
|
||||||
|
6
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<h3 className="text-2xl font-bold text-[var(--text-primary)] mb-3">
|
||||||
|
{t('features:automatic.step6.title', 'Previene Desperdicios')}
|
||||||
|
</h3>
|
||||||
|
<div className="space-y-3 text-[var(--text-secondary)]">
|
||||||
|
<p className="font-medium">{t('features:automatic.step6.perishables', 'Ingredientes perecederos (leche, nata, huevos):')}</p>
|
||||||
|
<ul className="space-y-2">
|
||||||
|
<li className="flex items-start gap-2">
|
||||||
|
<CheckCircle2 className="w-5 h-5 text-teal-600 mt-0.5 flex-shrink-0" />
|
||||||
|
<span>{t('features:automatic.step6.item1', '"Tienes leche que caduca en 5 días"')}</span>
|
||||||
|
</li>
|
||||||
|
<li className="flex items-start gap-2">
|
||||||
|
<CheckCircle2 className="w-5 h-5 text-teal-600 mt-0.5 flex-shrink-0" />
|
||||||
|
<span>{t('features:automatic.step6.item2', '"Solo usarás 15L en 5 días"')}</span>
|
||||||
|
</li>
|
||||||
|
<li className="flex items-start gap-2">
|
||||||
|
<CheckCircle2 className="w-5 h-5 text-teal-600 mt-0.5 flex-shrink-0" />
|
||||||
|
<span>{t('features:automatic.step6.item3', '"No pidas más de 15L, se desperdiciará"')}</span>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Morning Result */}
|
||||||
|
<div className="bg-gradient-to-r from-[var(--color-primary)] to-orange-600 rounded-2xl p-8 text-white">
|
||||||
|
<div className="text-center max-w-3xl mx-auto">
|
||||||
|
<Clock className="w-16 h-16 mx-auto mb-4" />
|
||||||
|
<h3 className="text-2xl lg:text-3xl font-bold mb-4">
|
||||||
|
{t('features:automatic.result.title', 'A las 6:00 AM recibes un email:')}
|
||||||
|
</h3>
|
||||||
|
<div className="space-y-2 text-lg">
|
||||||
|
<div className="flex items-center justify-center gap-2">
|
||||||
|
<CheckCircle2 className="w-6 h-6" />
|
||||||
|
<span>{t('features:automatic.result.item1', 'Predicción del día hecha')}</span>
|
||||||
|
</div>
|
||||||
|
<div className="flex items-center justify-center gap-2">
|
||||||
|
<CheckCircle2 className="w-6 h-6" />
|
||||||
|
<span>{t('features:automatic.result.item2', 'Plan de producción listo')}</span>
|
||||||
|
</div>
|
||||||
|
<div className="flex items-center justify-center gap-2">
|
||||||
|
<CheckCircle2 className="w-6 h-6" />
|
||||||
|
<span>{t('features:automatic.result.item3', '3 pedidos creados (aprobar con 1 clic)')}</span>
|
||||||
|
</div>
|
||||||
|
<div className="flex items-center justify-center gap-2">
|
||||||
|
<CheckCircle2 className="w-6 h-6" />
|
||||||
|
<span>{t('features:automatic.result.item4', 'Alerta: "Leche caduca en 2 días, úsala primero"')}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* What it eliminates */}
|
||||||
|
<div className="bg-[var(--bg-secondary)] rounded-2xl p-8 border border-[var(--border-primary)]">
|
||||||
|
<h3 className="text-2xl font-bold text-[var(--text-primary)] mb-6 text-center">
|
||||||
|
{t('features:automatic.eliminates.title', 'Lo que ELIMINA de tu rutina:')}
|
||||||
|
</h3>
|
||||||
|
<div className="grid md:grid-cols-2 gap-4">
|
||||||
|
<div className="flex items-start gap-3">
|
||||||
|
<span className="text-red-500 text-xl">❌</span>
|
||||||
|
<span className="text-[var(--text-secondary)]">{t('features:automatic.eliminates.item1', 'Adivinar cuánto hacer')}</span>
|
||||||
|
</div>
|
||||||
|
<div className="flex items-start gap-3">
|
||||||
|
<span className="text-red-500 text-xl">❌</span>
|
||||||
|
<span className="text-[var(--text-secondary)]">{t('features:automatic.eliminates.item2', 'Contar inventario manualmente')}</span>
|
||||||
|
</div>
|
||||||
|
<div className="flex items-start gap-3">
|
||||||
|
<span className="text-red-500 text-xl">❌</span>
|
||||||
|
<span className="text-[var(--text-secondary)]">{t('features:automatic.eliminates.item3', 'Calcular cuándo pedir a proveedores')}</span>
|
||||||
|
</div>
|
||||||
|
<div className="flex items-start gap-3">
|
||||||
|
<span className="text-red-500 text-xl">❌</span>
|
||||||
|
<span className="text-[var(--text-secondary)]">{t('features:automatic.eliminates.item4', 'Recordar fechas de caducidad')}</span>
|
||||||
|
</div>
|
||||||
|
<div className="flex items-start gap-3">
|
||||||
|
<span className="text-red-500 text-xl">❌</span>
|
||||||
|
<span className="text-[var(--text-secondary)]">{t('features:automatic.eliminates.item5', 'Preocuparte por quedarte sin stock')}</span>
|
||||||
|
</div>
|
||||||
|
<div className="flex items-start gap-3">
|
||||||
|
<span className="text-red-500 text-xl">❌</span>
|
||||||
|
<span className="text-[var(--text-secondary)]">{t('features:automatic.eliminates.item6', 'Desperdiciar ingredientes caducados')}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
{/* Feature 2: Local Intelligence */}
|
||||||
|
<section className="py-20 bg-[var(--bg-secondary)]">
|
||||||
|
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
||||||
|
<div className="text-center mb-16">
|
||||||
|
<div className="inline-flex items-center gap-2 bg-[var(--color-primary)]/10 text-[var(--color-primary)] px-4 py-2 rounded-full text-sm font-medium mb-6">
|
||||||
|
<MapPin className="w-4 h-4" />
|
||||||
|
<span>{t('features:local.badge', 'Tu Ventaja Competitiva')}</span>
|
||||||
|
</div>
|
||||||
|
<h2 className="text-3xl lg:text-5xl font-extrabold text-[var(--text-primary)] mb-6">
|
||||||
|
{t('features:local.title', 'Tu Panadería Es Única. La IA También.')}
|
||||||
|
</h2>
|
||||||
|
<p className="text-xl text-[var(--text-secondary)] max-w-3xl mx-auto">
|
||||||
|
{t('features:local.intro', 'Las IA genéricas saben que es lunes. La TUYA sabe que:')}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="grid md:grid-cols-2 gap-8 max-w-6xl mx-auto">
|
||||||
|
{/* Schools */}
|
||||||
|
<div className="bg-[var(--bg-primary)] rounded-2xl p-6 border border-[var(--border-primary)] hover:shadow-xl transition-all">
|
||||||
|
<div className="w-12 h-12 bg-blue-500/10 rounded-xl flex items-center justify-center mb-4">
|
||||||
|
<School className="w-6 h-6 text-blue-600" />
|
||||||
|
</div>
|
||||||
|
<h3 className="text-xl font-bold text-[var(--text-primary)] mb-3">
|
||||||
|
{t('features:local.schools.title', 'Colegios Cerca')}
|
||||||
|
</h3>
|
||||||
|
<ul className="space-y-2 text-[var(--text-secondary)]">
|
||||||
|
<li className="flex items-start gap-2">
|
||||||
|
<span className="text-blue-600 mt-0.5">•</span>
|
||||||
|
<span>{t('features:local.schools.item1', '"El CEIP San José está a 200m"')}</span>
|
||||||
|
</li>
|
||||||
|
<li className="flex items-start gap-2">
|
||||||
|
<span className="text-blue-600 mt-0.5">•</span>
|
||||||
|
<span>{t('features:local.schools.item2', '"En agosto venden 40% menos (vacaciones escolares)"')}</span>
|
||||||
|
</li>
|
||||||
|
<li className="flex items-start gap-2">
|
||||||
|
<span className="text-blue-600 mt-0.5">•</span>
|
||||||
|
<span>{t('features:local.schools.item3', '"Los lunes a las 8:30 hay pico (padres tras dejar niños)"')}</span>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Offices */}
|
||||||
|
<div className="bg-[var(--bg-primary)] rounded-2xl p-6 border border-[var(--border-primary)] hover:shadow-xl transition-all">
|
||||||
|
<div className="w-12 h-12 bg-purple-500/10 rounded-xl flex items-center justify-center mb-4">
|
||||||
|
<Building2 className="w-6 h-6 text-purple-600" />
|
||||||
|
</div>
|
||||||
|
<h3 className="text-xl font-bold text-[var(--text-primary)] mb-3">
|
||||||
|
{t('features:local.offices.title', 'Oficinas y Empresas')}
|
||||||
|
</h3>
|
||||||
|
<ul className="space-y-2 text-[var(--text-secondary)]">
|
||||||
|
<li className="flex items-start gap-2">
|
||||||
|
<span className="text-purple-600 mt-0.5">•</span>
|
||||||
|
<span>{t('features:local.offices.item1', '"Edificio de oficinas a 150m (250 trabajadores)"')}</span>
|
||||||
|
</li>
|
||||||
|
<li className="flex items-start gap-2">
|
||||||
|
<span className="text-purple-600 mt-0.5">•</span>
|
||||||
|
<span>{t('features:local.offices.item2', '"Viernes venden menos al mediodía (teletrabajo)"')}</span>
|
||||||
|
</li>
|
||||||
|
<li className="flex items-start gap-2">
|
||||||
|
<span className="text-purple-600 mt-0.5">•</span>
|
||||||
|
<span>{t('features:local.offices.item3', '"Hora punta: 13:00-14:00 (bocadillos)"')}</span>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Gyms */}
|
||||||
|
<div className="bg-[var(--bg-primary)] rounded-2xl p-6 border border-[var(--border-primary)] hover:shadow-xl transition-all">
|
||||||
|
<div className="w-12 h-12 bg-green-500/10 rounded-xl flex items-center justify-center mb-4">
|
||||||
|
<Dumbbell className="w-6 h-6 text-green-600" />
|
||||||
|
</div>
|
||||||
|
<h3 className="text-xl font-bold text-[var(--text-primary)] mb-3">
|
||||||
|
{t('features:local.gyms.title', 'Centros Deportivos')}
|
||||||
|
</h3>
|
||||||
|
<ul className="space-y-2 text-[var(--text-secondary)]">
|
||||||
|
<li className="flex items-start gap-2">
|
||||||
|
<span className="text-green-600 mt-0.5">•</span>
|
||||||
|
<span>{t('features:local.gyms.item1', '"Gimnasio a 300m"')}</span>
|
||||||
|
</li>
|
||||||
|
<li className="flex items-start gap-2">
|
||||||
|
<span className="text-green-600 mt-0.5">•</span>
|
||||||
|
<span>{t('features:local.gyms.item2', '"Mayor venta de productos saludables (pan integral, barritas)"')}</span>
|
||||||
|
</li>
|
||||||
|
<li className="flex items-start gap-2">
|
||||||
|
<span className="text-green-600 mt-0.5">•</span>
|
||||||
|
<span>{t('features:local.gyms.item3', '"Pico a las 7:00 AM y 19:00 PM"')}</span>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Competition */}
|
||||||
|
<div className="bg-[var(--bg-primary)] rounded-2xl p-6 border border-[var(--border-primary)] hover:shadow-xl transition-all">
|
||||||
|
<div className="w-12 h-12 bg-amber-500/10 rounded-xl flex items-center justify-center mb-4">
|
||||||
|
<ShoppingBag className="w-6 h-6 text-amber-600" />
|
||||||
|
</div>
|
||||||
|
<h3 className="text-xl font-bold text-[var(--text-primary)] mb-3">
|
||||||
|
{t('features:local.competition.title', 'Tu Competencia')}
|
||||||
|
</h3>
|
||||||
|
<ul className="space-y-2 text-[var(--text-secondary)]">
|
||||||
|
<li className="flex items-start gap-2">
|
||||||
|
<span className="text-amber-600 mt-0.5">•</span>
|
||||||
|
<span>{t('features:local.competition.item1', '"Otra panadería abrió hace 2 meses a 500m"')}</span>
|
||||||
|
</li>
|
||||||
|
<li className="flex items-start gap-2">
|
||||||
|
<span className="text-amber-600 mt-0.5">•</span>
|
||||||
|
<span>{t('features:local.competition.item2', '"Impacto: -15% en ventas de pan básico"')}</span>
|
||||||
|
</li>
|
||||||
|
<li className="flex items-start gap-2">
|
||||||
|
<span className="text-amber-600 mt-0.5">•</span>
|
||||||
|
<span>{t('features:local.competition.item3', '"Oportunidad: Diferénciate con especialidades"')}</span>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Weather */}
|
||||||
|
<div className="bg-[var(--bg-primary)] rounded-2xl p-6 border border-[var(--border-primary)] hover:shadow-xl transition-all">
|
||||||
|
<div className="w-12 h-12 bg-sky-500/10 rounded-xl flex items-center justify-center mb-4">
|
||||||
|
<Cloud className="w-6 h-6 text-sky-600" />
|
||||||
|
</div>
|
||||||
|
<h3 className="text-xl font-bold text-[var(--text-primary)] mb-3">
|
||||||
|
{t('features:local.weather.title', 'Clima de Tu Zona')}
|
||||||
|
</h3>
|
||||||
|
<ul className="space-y-2 text-[var(--text-secondary)]">
|
||||||
|
<li className="flex items-start gap-2">
|
||||||
|
<span className="text-sky-600 mt-0.5">•</span>
|
||||||
|
<span>{t('features:local.weather.item1', '"Datos AEMET de tu código postal"')}</span>
|
||||||
|
</li>
|
||||||
|
<li className="flex items-start gap-2">
|
||||||
|
<span className="text-sky-600 mt-0.5">•</span>
|
||||||
|
<span>{t('features:local.weather.item2', '"Lluvia → -20% croissants, +10% pan de molde"')}</span>
|
||||||
|
</li>
|
||||||
|
<li className="flex items-start gap-2">
|
||||||
|
<span className="text-sky-600 mt-0.5">•</span>
|
||||||
|
<span>{t('features:local.weather.item3', '"Calor → +30% productos frescos"')}</span>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Events */}
|
||||||
|
<div className="bg-[var(--bg-primary)] rounded-2xl p-6 border border-[var(--border-primary)] hover:shadow-xl transition-all">
|
||||||
|
<div className="w-12 h-12 bg-pink-500/10 rounded-xl flex items-center justify-center mb-4">
|
||||||
|
<PartyPopper className="w-6 h-6 text-pink-600" />
|
||||||
|
</div>
|
||||||
|
<h3 className="text-xl font-bold text-[var(--text-primary)] mb-3">
|
||||||
|
{t('features:local.events.title', 'Eventos Locales')}
|
||||||
|
</h3>
|
||||||
|
<ul className="space-y-2 text-[var(--text-secondary)]">
|
||||||
|
<li className="flex items-start gap-2">
|
||||||
|
<span className="text-pink-600 mt-0.5">•</span>
|
||||||
|
<span>{t('features:local.events.item1', '"Mercadillo los viernes en Plaza Mayor (500m)"')}</span>
|
||||||
|
</li>
|
||||||
|
<li className="flex items-start gap-2">
|
||||||
|
<span className="text-pink-600 mt-0.5">•</span>
|
||||||
|
<span>{t('features:local.events.item2', '"Fiestas del barrio próxima semana"')}</span>
|
||||||
|
</li>
|
||||||
|
<li className="flex items-start gap-2">
|
||||||
|
<span className="text-pink-600 mt-0.5">•</span>
|
||||||
|
<span>{t('features:local.events.item3', '"Partido importante → pico de ventas pre-evento"')}</span>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Why it matters */}
|
||||||
|
<div className="mt-12 max-w-4xl mx-auto bg-gradient-to-r from-[var(--color-primary)] to-orange-600 rounded-2xl p-8 text-white">
|
||||||
|
<h3 className="text-2xl font-bold mb-4 text-center">
|
||||||
|
{t('features:local.why_matters.title', 'Por qué importa:')}
|
||||||
|
</h3>
|
||||||
|
<div className="grid md:grid-cols-2 gap-6">
|
||||||
|
<div className="bg-white/10 rounded-lg p-4">
|
||||||
|
<p className="font-medium mb-2">{t('features:local.why_matters.generic', 'IA genérica:')}</p>
|
||||||
|
<p className="text-white/90">{t('features:local.why_matters.generic_example', '"Es lunes → vende X"')}</p>
|
||||||
|
</div>
|
||||||
|
<div className="bg-white/20 rounded-lg p-4 border-2 border-white">
|
||||||
|
<p className="font-medium mb-2">{t('features:local.why_matters.yours', 'TU IA:')}</p>
|
||||||
|
<p className="text-white/90">{t('features:local.why_matters.yours_example', '"Es lunes, llueve, colegio cerrado (festivo local), mercadillo cancelado → vende Y"')}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<p className="text-center mt-6 text-xl font-bold">
|
||||||
|
{t('features:local.accuracy', 'Precisión: 92% (vs 60-70% de sistemas genéricos)')}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
{/* Feature 3: Demand Forecasting */}
|
||||||
|
<section className="py-20 bg-[var(--bg-primary)]">
|
||||||
|
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
||||||
|
<div className="text-center mb-12">
|
||||||
|
<h2 className="text-3xl lg:text-4xl font-extrabold text-[var(--text-primary)] mb-4">
|
||||||
|
{t('features:forecasting.title', 'Sabe Cuánto Venderás Mañana (92% de Precisión)')}
|
||||||
|
</h2>
|
||||||
|
<p className="text-xl text-[var(--text-secondary)] max-w-3xl mx-auto">
|
||||||
|
{t('features:forecasting.subtitle', 'No es magia. Es matemáticas con tus datos.')}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="max-w-5xl mx-auto">
|
||||||
|
<div className="bg-gradient-to-br from-blue-50 to-indigo-50 dark:from-blue-900/20 dark:to-indigo-900/20 rounded-2xl p-8 border-2 border-blue-200 dark:border-blue-800 mb-8">
|
||||||
|
<h3 className="text-xl font-bold text-[var(--text-primary)] mb-4">
|
||||||
|
{t('features:forecasting.learns_from.title', 'La IA aprende de:')}
|
||||||
|
</h3>
|
||||||
|
<div className="grid md:grid-cols-2 gap-4">
|
||||||
|
<div className="flex items-start gap-3">
|
||||||
|
<CheckCircle2 className="w-5 h-5 text-blue-600 mt-0.5 flex-shrink-0" />
|
||||||
|
<span className="text-[var(--text-secondary)]">{t('features:forecasting.learns_from.item1', 'Tus ventas pasadas (6-12 meses)')}</span>
|
||||||
|
</div>
|
||||||
|
<div className="flex items-start gap-3">
|
||||||
|
<CheckCircle2 className="w-5 h-5 text-blue-600 mt-0.5 flex-shrink-0" />
|
||||||
|
<span className="text-[var(--text-secondary)]">{t('features:forecasting.learns_from.item2', 'Día de la semana (lunes ≠ sábado)')}</span>
|
||||||
|
</div>
|
||||||
|
<div className="flex items-start gap-3">
|
||||||
|
<CheckCircle2 className="w-5 h-5 text-blue-600 mt-0.5 flex-shrink-0" />
|
||||||
|
<span className="text-[var(--text-secondary)]">{t('features:forecasting.learns_from.item3', 'Estacionalidad (agosto ≠ diciembre)')}</span>
|
||||||
|
</div>
|
||||||
|
<div className="flex items-start gap-3">
|
||||||
|
<CheckCircle2 className="w-5 h-5 text-blue-600 mt-0.5 flex-shrink-0" />
|
||||||
|
<span className="text-[var(--text-secondary)]">{t('features:forecasting.learns_from.item4', 'Clima local (lluvia, calor, frío)')}</span>
|
||||||
|
</div>
|
||||||
|
<div className="flex items-start gap-3">
|
||||||
|
<CheckCircle2 className="w-5 h-5 text-blue-600 mt-0.5 flex-shrink-0" />
|
||||||
|
<span className="text-[var(--text-secondary)]">{t('features:forecasting.learns_from.item5', 'Eventos y festivos')}</span>
|
||||||
|
</div>
|
||||||
|
<div className="flex items-start gap-3">
|
||||||
|
<CheckCircle2 className="w-5 h-5 text-blue-600 mt-0.5 flex-shrink-0" />
|
||||||
|
<span className="text-[var(--text-secondary)]">{t('features:forecasting.learns_from.item6', 'Tu entorno único')}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="bg-white dark:bg-gray-800 rounded-2xl p-8 border-2 border-[var(--color-primary)] shadow-lg">
|
||||||
|
<h3 className="text-xl font-bold text-[var(--text-primary)] mb-4">
|
||||||
|
{t('features:forecasting.result.title', 'Resultado:')}
|
||||||
|
</h3>
|
||||||
|
<p className="text-[var(--text-secondary)] mb-4">
|
||||||
|
{t('features:forecasting.result.intro', 'Mañana (martes 15 de marzo) venderás:')}
|
||||||
|
</p>
|
||||||
|
<div className="space-y-3">
|
||||||
|
<div className="flex justify-between items-center bg-[var(--bg-secondary)] rounded-lg p-4">
|
||||||
|
<span className="font-medium">{t('features:forecasting.result.croissants', '78-82 croissants')}</span>
|
||||||
|
<span className="text-[var(--color-primary)] font-bold">{t('features:forecasting.result.croissants_avg', '(80 ±2)')}</span>
|
||||||
|
</div>
|
||||||
|
<div className="flex justify-between items-center bg-[var(--bg-secondary)] rounded-lg p-4">
|
||||||
|
<span className="font-medium">{t('features:forecasting.result.loaves', '115-125 barras')}</span>
|
||||||
|
<span className="text-[var(--color-primary)] font-bold">{t('features:forecasting.result.loaves_avg', '(120 ±5)')}</span>
|
||||||
|
</div>
|
||||||
|
<div className="flex justify-between items-center bg-[var(--bg-secondary)] rounded-lg p-4">
|
||||||
|
<span className="font-medium">{t('features:forecasting.result.muffins', '45-50 magdalenas')}</span>
|
||||||
|
<span className="text-[var(--color-primary)] font-bold">{t('features:forecasting.result.muffins_avg', '(48 ±2)')}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<p className="mt-4 text-sm text-[var(--text-secondary)]">
|
||||||
|
{t('features:forecasting.confidence', 'Confianza: 92% de las veces acierta dentro del rango')}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
{/* Feature 4: Reduce Waste = Save Money */}
|
||||||
|
<section className="py-20 bg-[var(--bg-secondary)]">
|
||||||
|
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
||||||
|
<div className="text-center mb-12">
|
||||||
|
<h2 className="text-3xl lg:text-4xl font-extrabold text-[var(--text-primary)] mb-4">
|
||||||
|
{t('features:waste.title', 'Menos Pan en la Basura, Más Dinero en Tu Bolsillo')}
|
||||||
|
</h2>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="max-w-5xl mx-auto grid md:grid-cols-2 gap-8">
|
||||||
|
{/* Before */}
|
||||||
|
<div className="bg-red-50 dark:bg-red-900/20 rounded-2xl p-8 border-2 border-red-200 dark:border-red-800">
|
||||||
|
<div className="w-12 h-12 bg-red-500/20 rounded-xl flex items-center justify-center mb-4">
|
||||||
|
<AlertTriangle className="w-6 h-6 text-red-600" />
|
||||||
|
</div>
|
||||||
|
<h3 className="text-xl font-bold text-[var(--text-primary)] mb-4">
|
||||||
|
{t('features:waste.before.title', 'Ejemplo típico de panadería:')}
|
||||||
|
</h3>
|
||||||
|
<ul className="space-y-3 text-[var(--text-secondary)]">
|
||||||
|
<li>{t('features:waste.before.item1', 'Haces 50 barras de más cada día "por si acaso"')}</li>
|
||||||
|
<li>{t('features:waste.before.item2', 'Precio: €2/barra')}</li>
|
||||||
|
<li className="font-bold text-red-700 dark:text-red-400">{t('features:waste.before.daily', 'Desperdicio: 50 × €2 = €100/día')}</li>
|
||||||
|
<li className="font-bold text-red-700 dark:text-red-400">{t('features:waste.before.monthly', 'Al mes: €100 × 30 = €3,000 perdidos')}</li>
|
||||||
|
<li className="font-bold text-red-900 dark:text-red-300 text-lg">{t('features:waste.before.yearly', 'Al año: €36,000 tirados a la basura')}</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* After */}
|
||||||
|
<div className="bg-green-50 dark:bg-green-900/20 rounded-2xl p-8 border-2 border-green-200 dark:border-green-800">
|
||||||
|
<div className="w-12 h-12 bg-green-500/20 rounded-xl flex items-center justify-center mb-4">
|
||||||
|
<TrendingUp className="w-6 h-6 text-green-600" />
|
||||||
|
</div>
|
||||||
|
<h3 className="text-xl font-bold text-[var(--text-primary)] mb-4">
|
||||||
|
{t('features:waste.after.title', 'Con Bakery-IA:')}
|
||||||
|
</h3>
|
||||||
|
<ul className="space-y-3 text-[var(--text-secondary)]">
|
||||||
|
<li>{t('features:waste.after.item1', 'Predicción precisa → Haces 5-10 barras de más (seguridad)')}</li>
|
||||||
|
<li>{t('features:waste.after.item2', 'Desperdicio: 5 × €2 = €10/día')}</li>
|
||||||
|
<li className="font-bold text-green-700 dark:text-green-400">{t('features:waste.after.monthly', 'Al mes: €300')}</li>
|
||||||
|
<li className="font-bold text-green-900 dark:text-green-300 text-xl bg-green-100 dark:bg-green-900/40 p-3 rounded-lg">
|
||||||
|
{t('features:waste.after.savings', 'AHORRO: €2,700/mes (€32,400/año)')}
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<p className="mt-4 text-sm font-medium text-green-700 dark:text-green-400">
|
||||||
|
{t('features:waste.after.roi', 'Recuperas la inversión en semana 1.')}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
{/* Feature 5: Sustainability + Grants */}
|
||||||
|
<section className="py-20 bg-[var(--bg-primary)]">
|
||||||
|
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
||||||
|
<div className="text-center mb-12">
|
||||||
|
<div className="inline-flex items-center gap-2 bg-green-500/10 text-green-600 dark:text-green-400 px-4 py-2 rounded-full text-sm font-medium mb-6">
|
||||||
|
<Leaf className="w-4 h-4" />
|
||||||
|
<span>{t('features:sustainability.badge', 'Funcionalidad del Sistema')}</span>
|
||||||
|
</div>
|
||||||
|
<h2 className="text-3xl lg:text-4xl font-extrabold text-[var(--text-primary)] mb-4">
|
||||||
|
{t('features:sustainability.title', 'Ayuda al Planeta, Accede a Ayudas Económicas')}
|
||||||
|
</h2>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* UN SDG Compliance */}
|
||||||
|
<div className="max-w-5xl mx-auto mb-12">
|
||||||
|
<div className="bg-gradient-to-br from-blue-50 to-green-50 dark:from-blue-900/20 dark:to-green-900/20 rounded-2xl p-8 border-2 border-blue-200 dark:border-blue-800">
|
||||||
|
<div className="flex items-start gap-6">
|
||||||
|
<div className="w-16 h-16 bg-blue-600 rounded-full flex items-center justify-center text-white flex-shrink-0">
|
||||||
|
<Globe className="w-8 h-8" />
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<h3 className="text-2xl font-bold text-[var(--text-primary)] mb-3">
|
||||||
|
{t('features:sustainability.un_sdg.title', 'Cumplimiento Automático ODS 12.3 (ONU)')}
|
||||||
|
</h3>
|
||||||
|
<p className="text-[var(--text-secondary)] mb-4">
|
||||||
|
{t('features:sustainability.un_sdg.description', 'Sin hacer nada extra, cumples con el Objetivo de Desarrollo Sostenible 12.3 de Naciones Unidas (reducción desperdicio alimentario).')}
|
||||||
|
</p>
|
||||||
|
<div className="bg-white dark:bg-gray-800 rounded-lg p-4 border-l-4 border-blue-600">
|
||||||
|
<p className="font-medium text-[var(--text-primary)]">
|
||||||
|
{t('features:sustainability.un_sdg.benefit', 'Recibes certificación automática → Credibilidad con clientes')}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Grant Programs */}
|
||||||
|
<div className="max-w-6xl mx-auto mb-12">
|
||||||
|
<h3 className="text-2xl font-bold text-[var(--text-primary)] mb-6 text-center">
|
||||||
|
{t('features:sustainability.grants.title', 'Elegible para 5 Programas de Ayudas:')}
|
||||||
|
</h3>
|
||||||
|
<div className="grid md:grid-cols-2 gap-6">
|
||||||
|
<div className="bg-[var(--bg-secondary)] rounded-xl p-6 border border-[var(--border-primary)]">
|
||||||
|
<div className="flex items-start gap-4">
|
||||||
|
<div className="w-10 h-10 bg-[var(--color-primary)]/10 rounded-lg flex items-center justify-center flex-shrink-0">
|
||||||
|
<Euro className="w-5 h-5 text-[var(--color-primary)]" />
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<h4 className="font-bold text-[var(--text-primary)] mb-2">
|
||||||
|
{t('features:sustainability.grants.pima.title', 'PIMA Adapta (MITECO)')}
|
||||||
|
</h4>
|
||||||
|
<p className="text-sm text-[var(--text-secondary)] mb-2">
|
||||||
|
{t('features:sustainability.grants.pima.amount', 'Hasta €50,000')}
|
||||||
|
</p>
|
||||||
|
<p className="text-sm text-[var(--text-secondary)]">
|
||||||
|
{t('features:sustainability.grants.pima.description', 'Proyectos de economía circular. Tu sistema = reducción desperdicio certificada')}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="bg-[var(--bg-secondary)] rounded-xl p-6 border border-[var(--border-primary)]">
|
||||||
|
<div className="flex items-start gap-4">
|
||||||
|
<div className="w-10 h-10 bg-[var(--color-primary)]/10 rounded-lg flex items-center justify-center flex-shrink-0">
|
||||||
|
<Euro className="w-5 h-5 text-[var(--color-primary)]" />
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<h4 className="font-bold text-[var(--text-primary)] mb-2">
|
||||||
|
{t('features:sustainability.grants.tourism.title', 'Planes de Sostenibilidad Turística')}
|
||||||
|
</h4>
|
||||||
|
<p className="text-sm text-[var(--text-secondary)] mb-2">
|
||||||
|
{t('features:sustainability.grants.tourism.amount', 'Hasta €30,000')}
|
||||||
|
</p>
|
||||||
|
<p className="text-sm text-[var(--text-secondary)]">
|
||||||
|
{t('features:sustainability.grants.tourism.description', 'Para panaderías en zonas turísticas')}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="bg-[var(--bg-secondary)] rounded-xl p-6 border border-[var(--border-primary)]">
|
||||||
|
<div className="flex items-start gap-4">
|
||||||
|
<div className="w-10 h-10 bg-[var(--color-primary)]/10 rounded-lg flex items-center justify-center flex-shrink-0">
|
||||||
|
<Euro className="w-5 h-5 text-[var(--color-primary)]" />
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<h4 className="font-bold text-[var(--text-primary)] mb-2">
|
||||||
|
{t('features:sustainability.grants.moves.title', 'MOVES Circular (Empresas)')}
|
||||||
|
</h4>
|
||||||
|
<p className="text-sm text-[var(--text-secondary)] mb-2">
|
||||||
|
{t('features:sustainability.grants.moves.amount', 'Hasta €20,000')}
|
||||||
|
</p>
|
||||||
|
<p className="text-sm text-[var(--text-secondary)]">
|
||||||
|
{t('features:sustainability.grants.moves.description', 'Transformación digital sostenible')}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="bg-[var(--bg-secondary)] rounded-xl p-6 border border-[var(--border-primary)]">
|
||||||
|
<div className="flex items-start gap-4">
|
||||||
|
<div className="w-10 h-10 bg-[var(--color-primary)]/10 rounded-lg flex items-center justify-center flex-shrink-0">
|
||||||
|
<Euro className="w-5 h-5 text-[var(--color-primary)]" />
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<h4 className="font-bold text-[var(--text-primary)] mb-2">
|
||||||
|
{t('features:sustainability.grants.regional.title', 'Ayudas Economía Circular Autonómicas')}
|
||||||
|
</h4>
|
||||||
|
<p className="text-sm text-[var(--text-secondary)] mb-2">
|
||||||
|
{t('features:sustainability.grants.regional.amount', 'Variable')}
|
||||||
|
</p>
|
||||||
|
<p className="text-sm text-[var(--text-secondary)]">
|
||||||
|
{t('features:sustainability.grants.regional.description', 'Depende de tu comunidad autónoma')}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="md:col-span-2 bg-gradient-to-r from-[var(--color-primary)]/10 to-green-500/10 rounded-xl p-6 border-2 border-[var(--color-primary)]">
|
||||||
|
<div className="flex items-start gap-4">
|
||||||
|
<div className="w-10 h-10 bg-[var(--color-primary)] rounded-lg flex items-center justify-center flex-shrink-0">
|
||||||
|
<Award className="w-5 h-5 text-white" />
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<h4 className="font-bold text-[var(--text-primary)] mb-2">
|
||||||
|
{t('features:sustainability.grants.tax.title', 'Bonificaciones Fiscales')}
|
||||||
|
</h4>
|
||||||
|
<p className="text-sm text-[var(--text-secondary)] mb-2">
|
||||||
|
{t('features:sustainability.grants.tax.amount', 'Hasta 25% reducción')}
|
||||||
|
</p>
|
||||||
|
<p className="text-sm text-[var(--text-secondary)]">
|
||||||
|
{t('features:sustainability.grants.tax.description', 'Deducción por inversión en sostenibilidad')}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* How it works */}
|
||||||
|
<div className="max-w-4xl mx-auto bg-[var(--bg-secondary)] rounded-2xl p-8 border border-[var(--border-primary)]">
|
||||||
|
<h3 className="text-xl font-bold text-[var(--text-primary)] mb-4">
|
||||||
|
{t('features:sustainability.how_it_works.title', 'Cómo funciona:')}
|
||||||
|
</h3>
|
||||||
|
<ul className="space-y-3">
|
||||||
|
<li className="flex items-start gap-3">
|
||||||
|
<CheckCircle2 className="w-5 h-5 text-green-600 mt-0.5 flex-shrink-0" />
|
||||||
|
<span className="text-[var(--text-secondary)]">{t('features:sustainability.how_it_works.item1', 'Bakery-IA genera reportes automáticos')}</span>
|
||||||
|
</li>
|
||||||
|
<li className="flex items-start gap-3">
|
||||||
|
<CheckCircle2 className="w-5 h-5 text-green-600 mt-0.5 flex-shrink-0" />
|
||||||
|
<span className="text-[var(--text-secondary)]">{t('features:sustainability.how_it_works.item2', 'Métricas de reducción de desperdicio (kg CO₂, litros agua)')}</span>
|
||||||
|
</li>
|
||||||
|
<li className="flex items-start gap-3">
|
||||||
|
<CheckCircle2 className="w-5 h-5 text-green-600 mt-0.5 flex-shrink-0" />
|
||||||
|
<span className="text-[var(--text-secondary)]">{t('features:sustainability.how_it_works.item3', 'Documentación lista para solicitudes')}</span>
|
||||||
|
</li>
|
||||||
|
<li className="flex items-start gap-3">
|
||||||
|
<CheckCircle2 className="w-5 h-5 text-green-600 mt-0.5 flex-shrink-0" />
|
||||||
|
<span className="text-[var(--text-secondary)]">{t('features:sustainability.how_it_works.item4', 'Te ayudamos con el proceso')}</span>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Impact metrics */}
|
||||||
|
<div className="max-w-5xl mx-auto mt-12 grid md:grid-cols-3 gap-6">
|
||||||
|
<div className="bg-gradient-to-br from-green-50 to-emerald-50 dark:from-green-900/20 dark:to-emerald-900/20 rounded-xl p-6 border border-green-200 dark:border-green-800 text-center">
|
||||||
|
<TreeDeciduous className="w-12 h-12 text-green-600 mx-auto mb-3" />
|
||||||
|
<div className="text-3xl font-bold text-green-700 dark:text-green-400 mb-2">85kg CO₂</div>
|
||||||
|
<p className="text-sm text-[var(--text-secondary)]">{t('features:sustainability.impact.co2', 'reducidos al mes (equivale a 3 árboles plantados)')}</p>
|
||||||
|
</div>
|
||||||
|
<div className="bg-gradient-to-br from-blue-50 to-cyan-50 dark:from-blue-900/20 dark:to-cyan-900/20 rounded-xl p-6 border border-blue-200 dark:border-blue-800 text-center">
|
||||||
|
<Droplets className="w-12 h-12 text-blue-600 mx-auto mb-3" />
|
||||||
|
<div className="text-3xl font-bold text-blue-700 dark:text-blue-400 mb-2">675,000L</div>
|
||||||
|
<p className="text-sm text-[var(--text-secondary)]">{t('features:sustainability.impact.water', 'agua ahorrada al año')}</p>
|
||||||
|
</div>
|
||||||
|
<div className="bg-gradient-to-br from-amber-50 to-orange-50 dark:from-amber-900/20 dark:to-orange-900/20 rounded-xl p-6 border border-amber-200 dark:border-amber-800 text-center">
|
||||||
|
<Award className="w-12 h-12 text-amber-600 mx-auto mb-3" />
|
||||||
|
<div className="text-3xl font-bold text-amber-700 dark:text-amber-400 mb-2">{t('features:sustainability.impact.certification', 'Certificado')}</div>
|
||||||
|
<p className="text-sm text-[var(--text-secondary)]">{t('features:sustainability.impact.certification_desc', 'ODS 12.3 ONU')}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
{/* Feature 6: Business Models */}
|
||||||
|
<section className="py-20 bg-[var(--bg-secondary)]">
|
||||||
|
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
||||||
|
<div className="text-center mb-12">
|
||||||
|
<h2 className="text-3xl lg:text-4xl font-extrabold text-[var(--text-primary)] mb-4">
|
||||||
|
{t('features:business_models.title', 'Para Cualquier Modelo de Negocio')}
|
||||||
|
</h2>
|
||||||
|
<p className="text-xl text-[var(--text-secondary)]">
|
||||||
|
{t('features:business_models.subtitle', 'No importa cómo trabajes, funciona para ti')}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="grid md:grid-cols-2 gap-8 max-w-5xl mx-auto">
|
||||||
|
<div className="bg-[var(--bg-primary)] rounded-2xl p-8 border-2 border-[var(--color-primary)]">
|
||||||
|
<div className="w-12 h-12 bg-[var(--color-primary)]/10 rounded-xl flex items-center justify-center mb-4">
|
||||||
|
<Store className="w-6 h-6 text-[var(--color-primary)]" />
|
||||||
|
</div>
|
||||||
|
<h3 className="text-xl font-bold text-[var(--text-primary)] mb-4">
|
||||||
|
{t('features:business_models.local.title', 'Panadería Producción Local')}
|
||||||
|
</h3>
|
||||||
|
<p className="text-[var(--text-secondary)] mb-4">
|
||||||
|
{t('features:business_models.local.description', 'Horneas y vendes en el mismo local')}
|
||||||
|
</p>
|
||||||
|
<ul className="space-y-2">
|
||||||
|
<li className="flex items-start gap-2">
|
||||||
|
<CheckCircle2 className="w-5 h-5 text-[var(--color-primary)] mt-0.5 flex-shrink-0" />
|
||||||
|
<span className="text-[var(--text-secondary)]">{t('features:business_models.local.benefit1', 'IA optimiza producción diaria')}</span>
|
||||||
|
</li>
|
||||||
|
<li className="flex items-start gap-2">
|
||||||
|
<CheckCircle2 className="w-5 h-5 text-[var(--color-primary)] mt-0.5 flex-shrink-0" />
|
||||||
|
<span className="text-[var(--text-secondary)]">{t('features:business_models.local.benefit2', 'Gestiona inventario de un punto')}</span>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="bg-[var(--bg-primary)] rounded-2xl p-8 border-2 border-blue-600">
|
||||||
|
<div className="w-12 h-12 bg-blue-500/10 rounded-xl flex items-center justify-center mb-4">
|
||||||
|
<Globe className="w-6 h-6 text-blue-600" />
|
||||||
|
</div>
|
||||||
|
<h3 className="text-xl font-bold text-[var(--text-primary)] mb-4">
|
||||||
|
{t('features:business_models.central.title', 'Obrador Central + Puntos de Venta')}
|
||||||
|
</h3>
|
||||||
|
<p className="text-[var(--text-secondary)] mb-4">
|
||||||
|
{t('features:business_models.central.description', 'Produces en obrador, distribuyes a tiendas')}
|
||||||
|
</p>
|
||||||
|
<ul className="space-y-2">
|
||||||
|
<li className="flex items-start gap-2">
|
||||||
|
<CheckCircle2 className="w-5 h-5 text-blue-600 mt-0.5 flex-shrink-0" />
|
||||||
|
<span className="text-[var(--text-secondary)]">{t('features:business_models.central.benefit1', 'IA predice demanda por punto de venta')}</span>
|
||||||
|
</li>
|
||||||
|
<li className="flex items-start gap-2">
|
||||||
|
<CheckCircle2 className="w-5 h-5 text-blue-600 mt-0.5 flex-shrink-0" />
|
||||||
|
<span className="text-[var(--text-secondary)]">{t('features:business_models.central.benefit2', 'Optimiza distribución y transporte')}</span>
|
||||||
|
</li>
|
||||||
|
<li className="flex items-start gap-2">
|
||||||
|
<CheckCircle2 className="w-5 h-5 text-blue-600 mt-0.5 flex-shrink-0" />
|
||||||
|
<span className="text-[var(--text-secondary)]">{t('features:business_models.central.benefit3', 'Gestiona inventario central + puntos')}</span>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
{/* Final CTA */}
|
||||||
|
<section className="py-20 bg-gradient-to-r from-[var(--color-primary)] to-orange-600">
|
||||||
|
<div className="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
|
||||||
|
<h2 className="text-3xl lg:text-4xl font-bold text-white mb-6">
|
||||||
|
{t('features:cta.title', 'Ver Bakery-IA en Acción')}
|
||||||
|
</h2>
|
||||||
|
<p className="text-xl text-white/90 mb-8">
|
||||||
|
{t('features:cta.subtitle', 'Solicita una demo personalizada para tu panadería')}
|
||||||
|
</p>
|
||||||
|
<Link to={getDemoUrl()}>
|
||||||
|
<Button
|
||||||
|
size="lg"
|
||||||
|
className="bg-white text-[var(--color-primary)] hover:bg-gray-100 font-bold text-lg px-8 py-4"
|
||||||
|
>
|
||||||
|
{t('features:cta.button', 'Solicitar Demo')}
|
||||||
|
<ArrowRight className="ml-2 w-5 h-5" />
|
||||||
|
</Button>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</PublicLayout>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default FeaturesPage;
|
||||||
File diff suppressed because it is too large
Load Diff
1320
frontend/src/pages/public/LandingPage.tsx.backup
Normal file
1320
frontend/src/pages/public/LandingPage.tsx.backup
Normal file
File diff suppressed because it is too large
Load Diff
@@ -6,6 +6,7 @@ import { AppShell } from '../components/layout';
|
|||||||
|
|
||||||
// Lazy load the pages we actually have
|
// Lazy load the pages we actually have
|
||||||
const LandingPage = React.lazy(() => import('../pages/public/LandingPage'));
|
const LandingPage = React.lazy(() => import('../pages/public/LandingPage'));
|
||||||
|
const FeaturesPage = React.lazy(() => import('../pages/public/FeaturesPage'));
|
||||||
const LoginPage = React.lazy(() => import('../pages/public/LoginPage'));
|
const LoginPage = React.lazy(() => import('../pages/public/LoginPage'));
|
||||||
const RegisterPage = React.lazy(() => import('../pages/public/RegisterPage'));
|
const RegisterPage = React.lazy(() => import('../pages/public/RegisterPage'));
|
||||||
const DemoPage = React.lazy(() => import('../pages/public/DemoPage'));
|
const DemoPage = React.lazy(() => import('../pages/public/DemoPage'));
|
||||||
@@ -66,6 +67,7 @@ export const AppRouter: React.FC = () => {
|
|||||||
<Routes>
|
<Routes>
|
||||||
{/* Public Routes */}
|
{/* Public Routes */}
|
||||||
<Route path="/" element={<LandingPage />} />
|
<Route path="/" element={<LandingPage />} />
|
||||||
|
<Route path="/features" element={<FeaturesPage />} />
|
||||||
<Route path="/login" element={<LoginPage />} />
|
<Route path="/login" element={<LoginPage />} />
|
||||||
<Route path="/register" element={<RegisterPage />} />
|
<Route path="/register" element={<RegisterPage />} />
|
||||||
<Route path="/demo" element={<DemoPage />} />
|
<Route path="/demo" element={<DemoPage />} />
|
||||||
|
|||||||
@@ -36,6 +36,7 @@ export interface RouteConfig {
|
|||||||
export const ROUTES = {
|
export const ROUTES = {
|
||||||
// Public routes
|
// Public routes
|
||||||
HOME: '/',
|
HOME: '/',
|
||||||
|
FEATURES: '/features',
|
||||||
LOGIN: '/login',
|
LOGIN: '/login',
|
||||||
REGISTER: '/register',
|
REGISTER: '/register',
|
||||||
FORGOT_PASSWORD: '/forgot-password',
|
FORGOT_PASSWORD: '/forgot-password',
|
||||||
@@ -216,7 +217,19 @@ export const routesConfig: RouteConfig[] = [
|
|||||||
hideSidebar: true,
|
hideSidebar: true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: ROUTES.FEATURES,
|
||||||
|
name: 'Features',
|
||||||
|
component: 'FeaturesPage',
|
||||||
|
title: 'Funcionalidades - Bakery-IA',
|
||||||
|
requiresAuth: false,
|
||||||
|
showInNavigation: false,
|
||||||
|
meta: {
|
||||||
|
layout: 'minimal',
|
||||||
|
scrollToTop: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
// Dashboard
|
// Dashboard
|
||||||
{
|
{
|
||||||
path: ROUTES.DASHBOARD,
|
path: ROUTES.DASHBOARD,
|
||||||
|
|||||||
Reference in New Issue
Block a user