feat: initialize product-site app with Next.js, i18n routing, and custom brand configurations

This commit is contained in:
Firman Ramdhani
2026-07-29 15:29:35 +07:00
parent fcea8f221b
commit eb63a48047
32 changed files with 5829 additions and 196 deletions
+8 -11
View File
@@ -16,12 +16,9 @@ export default function App() {
</h1>
<p className="mt-6 text-lg leading-8 text-gray-300">
Enterprise-grade solutions for modern businesses.
This page is served from{' '}
<code className="rounded bg-gray-700/50 px-2 py-0.5 text-sm font-mono text-blue-300">
apps/landing
</code>{' '}
on port <strong>5174</strong>.
Enterprise-grade solutions for modern businesses. This page is served from{' '}
<code className="rounded bg-gray-700/50 px-2 py-0.5 text-sm font-mono text-blue-300">apps/landing</code> on
port <strong>5174</strong>.
</p>
<div className="mt-10 flex items-center justify-center gap-4">
@@ -33,12 +30,12 @@ export default function App() {
@repo/ui workspace link verified Button component rendered successfully.
</p>
</div>
<div className="p-8">
<h1 className="text-2xl font-bold mb-4">Enterprise Web App</h1>
<LandingSample />
<div className="p-8">
<h1 className="text-2xl font-bold mb-4">Enterprise Web App</h1>
<LandingSample />
</div>
<I18nLandingSample />
</div>
<I18nLandingSample />
</div>
</ThemeProvider>
);
}