diff --git a/src/App.tsx b/src/App.tsx index 66075dc..98579b0 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -2,6 +2,8 @@ import { Routes, Route } from 'react-router-dom'; import Layout from './components/Layout'; import HomePage from './pages/HomePage'; import Contact from './pages/Contact'; +import Policy from './pages/Policy'; +import Terms from './pages/Terms'; export default function App() { return ( @@ -9,6 +11,8 @@ export default function App() { }> } /> } /> + } /> + } /> ); diff --git a/src/pages/Policy.tsx b/src/pages/Policy.tsx new file mode 100644 index 0000000..21be566 --- /dev/null +++ b/src/pages/Policy.tsx @@ -0,0 +1,31 @@ +import PolicyContent from "@/components/sections/legal/PolicyContent"; +import ScrollReveal from "@/components/ui/ScrollReveal"; + +export default function Policy() { + return ( +
+ + + +
+ ); +} \ No newline at end of file diff --git a/src/pages/Terms.tsx b/src/pages/Terms.tsx new file mode 100644 index 0000000..2328d13 --- /dev/null +++ b/src/pages/Terms.tsx @@ -0,0 +1,30 @@ +import PolicyContent from "@/components/sections/legal/PolicyContent"; +import ScrollReveal from "@/components/ui/ScrollReveal"; + +export default function Terms() { + return ( +
+ + + +
+ ); +} \ No newline at end of file