@@ -138,6 +151,47 @@ export default async function ArticlePage({ params }: PageProps) {
{/* Coming Soon Component for coming-soon layout */}
{frontmatter.layout === 'coming-soon' &&
}
+ {showInstallPrimer && (
+
+ Install DocumentDB first
+
+ Start with Docker for the fastest setup, or choose Linux packages for persistent servers.
+
+
+
+
Quick run with Docker
+
+
+
+
Install from Linux packages
+
+ Use the package finder to generate the exact apt/rpm command for your distro, architecture, and PostgreSQL version.
+
+
+
+ Docker guide
+
+
+ Open package finder
+
+
+ Linux packages docs
+
+
+
+
+
+ )}
+
{/* Markdown Content */}
diff --git a/app/layout.tsx b/app/layout.tsx
index 883e80f..b13b0c4 100644
--- a/app/layout.tsx
+++ b/app/layout.tsx
@@ -8,7 +8,7 @@ const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = getMetadata({
title: 'DocumentDB - Open Source Document Database',
- description: 'A powerful, scalable open-source document database solution. Built on the principles of transparency, developer freedom, and standardization, our mission is to build a MongoDB compatible open source document database based on PostgreSQL.',
+ description: 'A powerful, scalable open-source document database solution built on PostgreSQL for modern applications.',
});
export default function RootLayout({
@@ -34,4 +34,4 @@ export default function RootLayout({