diff --git a/LocalMind-Frontend/src/app/App.tsx b/LocalMind-Frontend/src/app/App.tsx
index aef77a4..2120bac 100644
--- a/LocalMind-Frontend/src/app/App.tsx
+++ b/LocalMind-Frontend/src/app/App.tsx
@@ -2,6 +2,7 @@ import React, { useState } from 'react'
import MainLoader from '../features/Dashboard/V1/Component/Loader/MainLoader'
import Navbar from '../shared/component/v1/Navbar'
import AppRoutes from './routes/AppRoutes'
+import Footer from '../shared/component/v1/Footer'
const App: React.FC = () => {
const [Loader, setLoader] = useState(true)
@@ -16,6 +17,8 @@ const App: React.FC = () => {
{/* All application routes including Chat Page */}
+
+
>
)
}
diff --git a/LocalMind-Frontend/src/app/routes/AppRoutes.tsx b/LocalMind-Frontend/src/app/routes/AppRoutes.tsx
index 445d621..ae1c16a 100644
--- a/LocalMind-Frontend/src/app/routes/AppRoutes.tsx
+++ b/LocalMind-Frontend/src/app/routes/AppRoutes.tsx
@@ -5,6 +5,8 @@ import SignUp from '../../features/Auth/SignUp'
import LoginPage from '../../shared/component/v1/LoginPage'
import ForgotPwd from '../../shared/component/v1/ForgotPwd'
import ResetPassword from '../../shared/component/v1/ResetPassword'
+import PrivacyPolicy from './features/Pages/PrivacyPolicy'
+import TermsConditions from './features/Pages/TermsConditions'
const AppRoutes: React.FC = () => {
return (
@@ -17,7 +19,7 @@ const AppRoutes: React.FC = () => {
} />
} />
} />
-
+
{/* Register Page - TODO: Create dedicated RegisterPage component */}
} />
@@ -27,6 +29,10 @@ const AppRoutes: React.FC = () => {
{/* Reset Password Page */}
} />
+ {/* Legal Pages */}
+
+ } />
+ } />
{/* Chat Page */}
)
diff --git a/LocalMind-Frontend/src/features/Dashboard/V1/Component/Pages/PrivacyPolicy.tsx b/LocalMind-Frontend/src/features/Dashboard/V1/Component/Pages/PrivacyPolicy.tsx
new file mode 100644
index 0000000..2e5f352
--- /dev/null
+++ b/LocalMind-Frontend/src/features/Dashboard/V1/Component/Pages/PrivacyPolicy.tsx
@@ -0,0 +1,50 @@
+import React from 'react'
+const PrivacyPolicy: React.FC = () => {
+ return (
+
+
+
+ Privacy Policy
+
+
+
+ At LocalMind, your privacy matters. This Privacy Policy explains what
+ information we collect, how we use it, and your rights regarding your
+ personal data.
+
+
+
+
+ Information We Collect
+
+
+ We do not collect, share, or sell personal information. LocalMind
+ operates locally, on your device, without tracking or analytics.
+
+
+
+
+
+ Use of Data
+
+
+ Any data you input is processed locally within the app and is never
+ sent to external servers unless you explicitly configure integrations.
+
+
+
+
+
+ Contact Us
+
+
+ For questions about this policy, email us at support@localmind.dev
+
+
+
+
+
+ )
+}
+
+export default PrivacyPolicy
diff --git a/LocalMind-Frontend/src/features/Dashboard/V1/Component/Pages/TermsConditions.tsx b/LocalMind-Frontend/src/features/Dashboard/V1/Component/Pages/TermsConditions.tsx
new file mode 100644
index 0000000..d2a0870
--- /dev/null
+++ b/LocalMind-Frontend/src/features/Dashboard/V1/Component/Pages/TermsConditions.tsx
@@ -0,0 +1,51 @@
+import React from 'react'
+
+const TermsConditions: React.FC = () => {
+ return (
+
+
+
+ Terms & Conditions
+
+
+
+ These Terms & Conditions govern your use of the LocalMind platform.
+ By accessing or using LocalMind, you agree to be bound by these terms.
+
+
+
+
+ Use License
+
+
+ You are granted a limited, non-exclusive, non-transferable license to
+ use LocalMind for personal or internal use only.
+
+
+
+
+
+ Limitations
+
+
+ LocalMind is provided “as-is.” We are not liable for any damages
+ arising from the use of the platform.
+
+
+
+
+
+ Governing Law
+
+
+ These Terms are governed by the laws of the applicable jurisdiction
+ where LocalMind is operated.
+
+
+
+
+
+ )
+}
+
+export default TermsConditions
diff --git a/LocalMind-Frontend/src/shared/component/v1/Footer.tsx b/LocalMind-Frontend/src/shared/component/v1/Footer.tsx
new file mode 100644
index 0000000..170a840
--- /dev/null
+++ b/LocalMind-Frontend/src/shared/component/v1/Footer.tsx
@@ -0,0 +1,50 @@
+import React from 'react'
+import { Link } from 'react-router-dom'
+
+const Footer: React.FC = () => {
+ const currentYear = new Date().getFullYear()
+
+ return (
+
+
+ {/* Brand + Description */}
+
+
LocalMind
+
+ Your Data. Your AI. No Compromises.
+
+
+
+ {/* Navigation Links */}
+
+
+ Home
+
+
+ Privacy Policy
+
+
+ Terms & Conditions
+
+
+ Docs
+
+
+
+ {/* Social / Info */}
+
+
Built with ❤️ by NexGenStudioDev
+
No tracking. No data capture.
+
+
+
+
+
+
+ © {currentYear} LocalMind. All rights reserved.
+
+
+ )
+}
+
+export default Footer