import React from 'react'; import { BrowserRouter as Router, Routes, Route, useLocation } from 'react-router-dom'; import Home from './pages/Home'; import Portal from './pages/Portal'; import { AnimatePresence } from 'framer-motion'; // Animasyonlu geçişler için bir Wrapper bileşeni function AnimatedRoutes() { const location = useLocation(); return ( } /> } /> ); } function App() { return ( ); } export default App;