Implementierung - SEO - 01.08.2025
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
export const faq = {
|
||||
title: 'Häufig gestellte Fragen',
|
||||
moreQuestions: 'Haben Sie weitere Fragen?',
|
||||
contactUs: 'Kontaktieren Sie uns',
|
||||
questions: [
|
||||
{
|
||||
question: "Wie kann ich Python für Prozessautomatisierung einsetzen?",
|
||||
answer: "Python eignet sich hervorragend für Prozessautomatisierung durch Libraries wie Selenium für Web-Automation, Pandas für Datenverarbeitung und Schedule für zeitgesteuerte Aufgaben. Ich entwickle maßgeschneiderte Automatisierungslösungen für Ihre Geschäftsprozesse.",
|
||||
category: "python"
|
||||
},
|
||||
{
|
||||
question: "Was macht OLLAMA ideal für lokale KI-Entwicklung?",
|
||||
answer: "OLLAMA ermöglicht das Ausführen großer Sprachmodelle lokal, was Datenschutz gewährleistet und API-Kosten reduziert. Ich spezialisiere mich auf die Integration von OLLAMA in Anwendungen für individuelle KI-Lösungen ohne Cloud-Abhängigkeiten.",
|
||||
category: "ai"
|
||||
},
|
||||
{
|
||||
question: "Welche Vorteile bieten Electron Desktop Apps?",
|
||||
answer: "Electron ermöglicht die Entwicklung plattformübergreifender Desktop-Anwendungen mit Web-Technologien. Sie erhalten eine native App für Windows, Mac und Linux aus einer einzigen Codebasis. Ideal für Tools mit komplexer UI und Offline-Funktionalität.",
|
||||
category: "electron"
|
||||
},
|
||||
{
|
||||
question: "Wie lange dauert die Entwicklung einer Web-Anwendung?",
|
||||
answer: "Die Entwicklungsdauer hängt vom Umfang ab. Ein MVP kann in 4-8 Wochen entwickelt werden, während komplexe Enterprise-Anwendungen 3-6 Monate benötigen. Ich arbeite agil und liefere in 2-Wochen-Sprints nutzbare Zwischenergebnisse.",
|
||||
category: "general"
|
||||
},
|
||||
{
|
||||
question: "Können Sie bestehende Python-Skripte in Web-Apps umwandeln?",
|
||||
answer: "Ja, ich kann Ihre Python-Skripte in moderne Web-Anwendungen mit FastAPI oder Django Backend und React Frontend transformieren. Dies ermöglicht Multi-User-Zugriff, bessere UI/UX und zentrale Datenverwaltung.",
|
||||
category: "python"
|
||||
},
|
||||
{
|
||||
question: "Wie integrieren Sie KI in bestehende Geschäftsprozesse?",
|
||||
answer: "Ich analysiere Ihre Workflows und identifiziere Automatisierungspotenziale. Mit OLLAMA oder anderen KI-Modellen entwickle ich Lösungen für Textanalyse, Dokumentenverarbeitung, Kundenservice-Automation oder Datenextraktion - alles datenschutzkonform on-premise.",
|
||||
category: "ai"
|
||||
}
|
||||
]
|
||||
};
|
||||
@@ -29,6 +29,9 @@ import { navigation } from './navigation';
|
||||
// Footer translations
|
||||
import footer from './footer';
|
||||
|
||||
// FAQ translations
|
||||
import { faq } from './faq';
|
||||
|
||||
// Zusammenführung aller Übersetzungsobjekte
|
||||
const translations = {
|
||||
// Pages
|
||||
@@ -77,6 +80,7 @@ const translations = {
|
||||
},
|
||||
meta,
|
||||
navigation,
|
||||
faq,
|
||||
} as const;
|
||||
|
||||
// Default-Export: komplettes Übersetzungsobjekt
|
||||
@@ -111,4 +115,5 @@ export {
|
||||
common,
|
||||
meta,
|
||||
navigation,
|
||||
faq,
|
||||
};
|
||||
@@ -0,0 +1,37 @@
|
||||
export const faq = {
|
||||
title: 'Frequently Asked Questions',
|
||||
moreQuestions: 'Have more questions?',
|
||||
contactUs: 'Contact us',
|
||||
questions: [
|
||||
{
|
||||
question: "How can I use Python for process automation?",
|
||||
answer: "Python excels at process automation through libraries like Selenium for web automation, Pandas for data processing, and Schedule for timed tasks. I develop custom automation solutions tailored to your business processes.",
|
||||
category: "python"
|
||||
},
|
||||
{
|
||||
question: "What makes OLLAMA ideal for local AI development?",
|
||||
answer: "OLLAMA enables running large language models locally, ensuring data privacy and reducing API costs. I specialize in integrating OLLAMA into applications for custom AI solutions without cloud dependencies.",
|
||||
category: "ai"
|
||||
},
|
||||
{
|
||||
question: "What are the advantages of Electron desktop apps?",
|
||||
answer: "Electron enables cross-platform desktop app development using web technologies. You get a native app for Windows, Mac, and Linux from a single codebase. Ideal for tools requiring complex UI and offline functionality.",
|
||||
category: "electron"
|
||||
},
|
||||
{
|
||||
question: "How long does web application development take?",
|
||||
answer: "Development time depends on scope. An MVP can be developed in 4-8 weeks, while complex enterprise applications require 3-6 months. I work agile and deliver usable results in 2-week sprints.",
|
||||
category: "general"
|
||||
},
|
||||
{
|
||||
question: "Can you convert existing Python scripts into web apps?",
|
||||
answer: "Yes, I can transform your Python scripts into modern web applications with FastAPI or Django backend and React frontend. This enables multi-user access, better UI/UX, and centralized data management.",
|
||||
category: "python"
|
||||
},
|
||||
{
|
||||
question: "How do you integrate AI into existing business processes?",
|
||||
answer: "I analyze your workflows and identify automation potential. Using OLLAMA or other AI models, I develop solutions for text analysis, document processing, customer service automation, or data extraction - all privacy-compliant on-premise.",
|
||||
category: "ai"
|
||||
}
|
||||
]
|
||||
};
|
||||
@@ -29,6 +29,9 @@ import { navigation } from './navigation';
|
||||
// Footer translations
|
||||
import footer from './footer';
|
||||
|
||||
// FAQ translations
|
||||
import { faq } from './faq';
|
||||
|
||||
// Merging all translation objects
|
||||
const translations = {
|
||||
// Pages
|
||||
@@ -77,6 +80,7 @@ const translations = {
|
||||
},
|
||||
meta,
|
||||
navigation,
|
||||
faq,
|
||||
} as const;
|
||||
|
||||
// Default export: complete translations object
|
||||
@@ -111,4 +115,5 @@ export {
|
||||
common,
|
||||
meta,
|
||||
navigation,
|
||||
faq,
|
||||
};
|
||||
@@ -0,0 +1,37 @@
|
||||
export const faq = {
|
||||
title: 'Često postavljana pitanja',
|
||||
moreQuestions: 'Imate još pitanja?',
|
||||
contactUs: 'Kontaktirajte nas',
|
||||
questions: [
|
||||
{
|
||||
question: "Kako mogu da koristim Python za automatizaciju procesa?",
|
||||
answer: "Python je odličan za automatizaciju procesa kroz biblioteke kao što su Selenium za web automatizaciju, Pandas za obradu podataka i Schedule za vremenski zakazane zadatke. Razvijam prilagođena rešenja za automatizaciju vaših poslovnih procesa.",
|
||||
category: "python"
|
||||
},
|
||||
{
|
||||
question: "Šta čini OLLAMA idealnim za lokalni razvoj veštačke inteligencije?",
|
||||
answer: "OLLAMA omogućava pokretanje velikih jezičkih modela lokalno, što garantuje privatnost podataka i smanjuje troškove API-ja. Specijalizovan sam za integraciju OLLAMA-e u aplikacije za prilagođena AI rešenja bez zavisnosti od oblaka.",
|
||||
category: "ai"
|
||||
},
|
||||
{
|
||||
question: "Koje su prednosti Electron desktop aplikacija?",
|
||||
answer: "Electron omogućava razvoj desktop aplikacija za više platformi koristeći web tehnologije. Dobijate nativnu aplikaciju za Windows, Mac i Linux iz jedne baze koda. Idealno za alate koji zahtevaju kompleksan UI i offline funkcionalnost.",
|
||||
category: "electron"
|
||||
},
|
||||
{
|
||||
question: "Koliko dugo traje razvoj web aplikacije?",
|
||||
answer: "Vreme razvoja zavisi od obima. MVP može biti razvijen za 4-8 nedelja, dok kompleksne enterprise aplikacije zahtevaju 3-6 meseci. Radim agilno i isporučujem upotrebljive rezultate u dvonedeljnim sprintovima.",
|
||||
category: "general"
|
||||
},
|
||||
{
|
||||
question: "Možete li konvertovati postojeće Python skripte u web aplikacije?",
|
||||
answer: "Da, mogu transformisati vaše Python skripte u moderne web aplikacije sa FastAPI ili Django backend-om i React frontend-om. Ovo omogućava multi-korisnički pristup, bolji UI/UX i centralizovano upravljanje podacima.",
|
||||
category: "python"
|
||||
},
|
||||
{
|
||||
question: "Kako integrisati veštačku inteligenciju u postojeće poslovne procese?",
|
||||
answer: "Analiziram vaše radne tokove i identifikujem potencijal za automatizaciju. Koristeći OLLAMA ili druge AI modele, razvijam rešenja za analizu teksta, obradu dokumenata, automatizaciju korisničke podrške ili ekstrakciju podataka - sve u skladu sa privatnošću podataka on-premise.",
|
||||
category: "ai"
|
||||
}
|
||||
]
|
||||
};
|
||||
@@ -29,6 +29,9 @@ import { navigation } from './navigation';
|
||||
// Footer prevodi
|
||||
import footer from './footer';
|
||||
|
||||
// FAQ prevodi
|
||||
import { faq } from './faq';
|
||||
|
||||
// Objedinjavanje svih prevoda
|
||||
const translations = {
|
||||
// Stranice
|
||||
@@ -77,6 +80,7 @@ const translations = {
|
||||
},
|
||||
meta,
|
||||
navigation,
|
||||
faq,
|
||||
} as const;
|
||||
|
||||
// Default izvoz: kompletan objekat prevoda
|
||||
@@ -111,4 +115,5 @@ export {
|
||||
common,
|
||||
meta,
|
||||
navigation,
|
||||
faq,
|
||||
};
|
||||
Reference in New Issue
Block a user