diff --git a/app/company/about/page.tsx b/app/company/about/page.tsx new file mode 100644 index 0000000..6260925 --- /dev/null +++ b/app/company/about/page.tsx @@ -0,0 +1,15 @@ +export default function AboutPage() { + return ( +
+
+

+ About Us +

+

+ We’re on a mission to simplify legal access for all Indians using AI. LegalEase bridges the gap + between law and people through intuitive tools and clear language. +

+
+
+ ); +} diff --git a/app/company/contact/page.tsx b/app/company/contact/page.tsx new file mode 100644 index 0000000..7b4cbdf --- /dev/null +++ b/app/company/contact/page.tsx @@ -0,0 +1,12 @@ +export default function ContactPage() { + return ( +
+
+

Contact Us

+

+ Got questions or suggestions? We'd love to hear from you! +

+
+
+ ); +} \ No newline at end of file diff --git a/app/company/privacy-policy/page.tsx b/app/company/privacy-policy/page.tsx new file mode 100644 index 0000000..f5d2d9c --- /dev/null +++ b/app/company/privacy-policy/page.tsx @@ -0,0 +1,12 @@ +export default function PrivacyPolicyPage() { + return ( +
+
+

Privacy Policy

+

+ Learn how we collect, use, and protect your personal information. +

+
+
+ ); +} diff --git a/app/company/terms/page.tsx b/app/company/terms/page.tsx new file mode 100644 index 0000000..aeb41ea --- /dev/null +++ b/app/company/terms/page.tsx @@ -0,0 +1,12 @@ +export default function TermsOfServicePage() { + return ( +
+
+

Terms of Service

+

+ Read the rules and conditions that apply when you use our platform. +

+
+
+ ); +} diff --git a/app/globals.css b/app/globals.css index f2ff4e0..55e21fa 100644 --- a/app/globals.css +++ b/app/globals.css @@ -2,6 +2,10 @@ @tailwind components; @tailwind utilities; +html { + scroll-behavior: smooth; +} + body { font-family: Arial, Helvetica, sans-serif; } diff --git a/app/resources/blog/page.tsx b/app/resources/blog/page.tsx new file mode 100644 index 0000000..25c1f23 --- /dev/null +++ b/app/resources/blog/page.tsx @@ -0,0 +1,12 @@ +export default function BlogPage() { + return ( +
+
+

Blog

+

+ Read about legal updates, stories, and helpful articles curated by experts. +

+
+
+ ); +} diff --git a/app/resources/document-templete/page.tsx b/app/resources/document-templete/page.tsx new file mode 100644 index 0000000..c43b677 --- /dev/null +++ b/app/resources/document-templete/page.tsx @@ -0,0 +1,12 @@ +export default function DocumentTemplatesPage() { + return ( +
+
+

Document Templates

+

+ Download legal document templates to handle common legal matters. +

+
+
+ ); +} diff --git a/app/resources/faq/page.tsx b/app/resources/faq/page.tsx new file mode 100644 index 0000000..f5ef0b0 --- /dev/null +++ b/app/resources/faq/page.tsx @@ -0,0 +1,12 @@ +export default function FAQPage() { + return ( +
+
+

FAQs

+

+ Find answers to the most frequently asked questions about our platform and services. +

+
+
+ ); +} diff --git a/app/resources/legal-guidance/page.tsx b/app/resources/legal-guidance/page.tsx new file mode 100644 index 0000000..ed3d88f --- /dev/null +++ b/app/resources/legal-guidance/page.tsx @@ -0,0 +1,12 @@ +export default function LegalGuidesPage() { + return ( +
+
+

Legal Guides

+

+ Explore comprehensive guides to help you understand Indian law in simple terms. +

+
+
+ ); +} diff --git a/components.json b/components.json index d9ef0ae..644d1d8 100644 --- a/components.json +++ b/components.json @@ -5,7 +5,7 @@ "tsx": true, "tailwind": { "config": "tailwind.config.ts", - "css": "app/globals.css", + "css": "app/globals.css" , "baseColor": "neutral", "cssVariables": true, "prefix": "" diff --git a/components/footer.tsx b/components/footer.tsx index bef4624..54feefd 100644 --- a/components/footer.tsx +++ b/components/footer.tsx @@ -96,7 +96,7 @@ export function Footer() {