diff --git a/app/(home)/about/page.tsx b/app/(home)/about/page.tsx new file mode 100644 index 0000000..37fa232 --- /dev/null +++ b/app/(home)/about/page.tsx @@ -0,0 +1,251 @@ +import Link from "next/link"; +import Image from "next/image"; +import { BookOpenIcon } from "lucide-react"; + +export default function AboutPage() { + return ( +
+
+ UserClouds Logo +
+ +
+

+ Open-Sourcing UserClouds +

+ +

+ The team at UserClouds has decided to{" "} + + wind down + {" "} + + our journey + + . As we do this, we're excited to announce that we're + open-sourcing our codebase to allow the community to build on our + work. +

+ +

About UserClouds

+

+ UserClouds was designed to provide organizations with granular control + over sensitive data access. Our platform offers: +

+ +

+ These capabilities helped enterprises enforce least privilege access, + comply with data residency laws, such as GDPR and CCPA, and integrate + securely with modern technologies, such as LLMs, Snowflake & + Databricks, etc. +

+ +

Why Open-Source?

+

+ We believe in the power of community and the importance of this work. + Open-sourcing UserClouds is motivated by: +

+ + +

Accessing the Code

+

+ Our codebase is now available at{" "} + + https://github.com/userclouds/userclouds-oss + + . Here's what you'll find: +

+ +

+ We welcome contributions and feedback from the community to further + improve and adapt the platform. +

+ +

+ Documentation & Use Cases +

+

+ To assist users in navigating and utilizing the open-source version of + UserClouds, we've provided detailed documentation covering: +

+ +

+ These resources aim to make it as straightforward as possible for + organizations to adopt and benefit from UserClouds. +

+ +

Acknowledgments

+

We extend our deepest gratitude to:

+ +

+ Your support has been invaluable, and we look forward to seeing how + the community builds upon our foundation. +

+ +

Stay Connected

+

+ While UserClouds as a company is winding down, our commitment to data + security and privacy continues. For updates, discussions, or to share + how you're using the open-source version, please reach out via: +

+ +

+ By open-sourcing UserClouds, we hope to contribute meaningfully to the + broader community and continue our mission of enhancing data security + and privacy. +

+ +

+ Thank you for being part of our journey. +

+

The UserClouds Team

+
+ +
+ + + Read Documentation + + + + GitHub + + + GitHub + +
+
+ ); +} diff --git a/app/(home)/layout.tsx b/app/(home)/layout.tsx index a42590f..b761677 100644 --- a/app/(home)/layout.tsx +++ b/app/(home)/layout.tsx @@ -1,15 +1,23 @@ -import type { ReactNode } from 'react'; -import { HomeLayout } from 'fumadocs-ui/layouts/home'; -import { baseOptions } from '@/app/layout.config'; +import type { ReactNode } from "react"; +import { HomeLayout } from "fumadocs-ui/layouts/home"; +import { baseOptions } from "@/app/layout.config"; export default function Layout({ children }: { children: ReactNode }) { - return {children} + return ( + + {children} + + ); } diff --git a/app/(home)/page.tsx b/app/(home)/page.tsx index 15bb4b9..68c6da0 100644 --- a/app/(home)/page.tsx +++ b/app/(home)/page.tsx @@ -1,13 +1,20 @@ import Link from "next/link"; import Image from "next/image"; import { LockIcon, ShieldIcon, UsersIcon } from "lucide-react"; +import { Banner } from "fumadocs-ui/components/banner"; export default function HomePage() { return (
+ + UserClouds is now open-source!{" "} + + Read our announcement. + +
UserClouds Logo -

- An open-source identity management platform that simplifies - authentication, authorization, and user data handling for modern - applications. +

+ An{" "} + + open-source identity management platform + {" "} + that simplifies authentication, authorization, and user data handling + for modern applications. +