import PageTransition from '../../components/PageTransition'; import SEO from '../../components/SEO'; import Hero from './components/Hero'; import Experience from './components/Experience'; import Skills from './components/Skills'; import Projects from './components/Projects'; import About from './components/About'; import { FAQSection } from '../../components/FAQSection'; const HomePage = () => { const schema = { '@context': 'https://schema.org', '@type': 'ProfilePage', name: 'Damjan Savić - Digital Solutions Consultant', description: 'Expert in JTL integration, e-commerce solutions, and process automation. Helping businesses optimize their digital operations.', mainEntity: { '@type': 'Person', name: 'Damjan Savić', jobTitle: 'Digital Solutions Consultant', description: 'Software Developer & Digital Solutions Consultant specializing in ERP systems, e-commerce integration, and process automation.', knowsLanguage: [ 'English', 'German', 'Serbian', 'French', 'Spanish', 'Russian' ], hasOccupation: { '@type': 'Occupation', name: 'Digital Solutions Consultant', skills: [ 'JTL-Wawi', 'Python Development', 'E-commerce Integration', 'Process Automation', 'System Integration', 'Digital Marketing' ] }, alumniOf: { '@type': 'CollegeOrUniversity', name: 'Middlesex University London' }, worksFor: { '@type': 'Organization', name: 'RITTER Digital GmbH', location: 'Oberhausen, Germany' } } }; const metaDescription = 'Digital Solutions Consultant specializing in JTL integration, e-commerce solutions, ' + 'and process automation. Expertise in Python development, system integration, and ' + 'digital marketing automation. Based in Germany, working with clients worldwide.'; return ( <>
{/* Hero Section */}
{/* Experience Section */}
{/* Skills Section */}
{/* Projects Section */}
{/* About Section */}
{/* FAQ Section */}
); }; export default HomePage;