added privacy for lockli
All checks were successful
Build & Deploy Vite App (Docker Compose) / build-and-deploy (push) Successful in 2m30s

This commit is contained in:
2025-12-03 04:15:30 +03:00
parent 3adb87d40d
commit 003cae6fc8
4 changed files with 87 additions and 1 deletions

View File

@@ -2,6 +2,7 @@ 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 LockliPrivacy from './pages/LockliPrivacy'; // <-- YENİ EKLENDİ
import { AnimatePresence } from 'framer-motion';
// Animasyonlu geçişler için bir Wrapper bileşeni
@@ -13,6 +14,9 @@ function AnimatedRoutes() {
<Routes location={location} key={location.pathname}>
<Route path="/" element={<Home />} />
<Route path="/portal" element={<Portal />} />
{/* Lockli Privacy Policy yalnızca URL'den erişilecek */}
<Route path="/lockli/privacy" element={<LockliPrivacy />} />
</Routes>
</AnimatePresence>
);
@@ -26,4 +30,4 @@ function App() {
);
}
export default App;
export default App;