Skip to content
Open
Show file tree
Hide file tree
Changes from 22 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
f7f8b09
chore(deps): bump @modelcontextprotocol/sdk
dependabot[bot] Jan 1, 2026
69822f3
chore(deps): bump body-parser
dependabot[bot] Jan 1, 2026
a3cdadf
chore(deps-dev): bump storybook
dependabot[bot] Jan 1, 2026
1d6c7e3
chore(deps): bump axios in the npm_and_yarn group across 1 directory
dependabot[bot] Jan 1, 2026
faf5514
chore(deps): bump js-yaml in the npm_and_yarn group across 1 directory
dependabot[bot] Jan 1, 2026
44c7884
Initial plan
Copilot Jan 2, 2026
f7d6d6f
Implement 1Commerce Enterprise Infrastructure Terminal
Copilot Jan 2, 2026
e889177
Merge pull request #1 from ksksrbiz-arch/dependabot/npm_and_yarn/npm_…
ksksrbiz-arch Jan 2, 2026
12719b4
Merge pull request #2 from ksksrbiz-arch/dependabot/npm_and_yarn/npm_…
ksksrbiz-arch Jan 2, 2026
cc958f1
Merge pull request #4 from ksksrbiz-arch/dependabot/npm_and_yarn/npm_…
ksksrbiz-arch Jan 2, 2026
d7b6c39
Merge pull request #5 from ksksrbiz-arch/dependabot/npm_and_yarn/npm_…
ksksrbiz-arch Jan 2, 2026
1133b15
Merge pull request #3 from ksksrbiz-arch/dependabot/npm_and_yarn/npm_…
ksksrbiz-arch Jan 2, 2026
3ed4501
chore(deps): bump playwright
dependabot[bot] Jan 2, 2026
cec39b6
Fix security vulnerability and duplicate chart ID bug
Copilot Jan 2, 2026
39c3acf
chore(deps): bump qs in the npm_and_yarn group across 1 directory
dependabot[bot] Jan 2, 2026
297f5e2
Merge pull request #6 from ksksrbiz-arch/dependabot/npm_and_yarn/npm_…
ksksrbiz-arch Jan 2, 2026
6ebd8f3
chore(deps): bump vite in the npm_and_yarn group across 1 directory
dependabot[bot] Jan 2, 2026
d4f4b3d
Merge pull request #7 from ksksrbiz-arch/dependabot/npm_and_yarn/npm_…
ksksrbiz-arch Jan 2, 2026
ac8dd9b
Merge pull request #8 from ksksrbiz-arch/dependabot/npm_and_yarn/npm_…
ksksrbiz-arch Jan 2, 2026
1329429
Use event.currentTarget for safer button access
Copilot Jan 2, 2026
6307522
Address code review recommendations: npm packages, proper React patte…
Copilot Jan 2, 2026
292a10b
feat: Optimize Button component with React.memo
google-labs-jules[bot] Jan 2, 2026
64d0406
Merge pull request #9 from ksksrbiz-arch/copilot/add-enterprise-infra…
ksksrbiz-arch Jan 2, 2026
0f8d49e
chore(deps): bump the npm_and_yarn group across 1 directory with 10 u…
dependabot[bot] Jan 2, 2026
f02046b
New files from Fly.io Launch
Jan 8, 2026
d56e675
Merge pull request #12 from ksksrbiz-arch/flyio-new-files
ksksrbiz-arch Jan 8, 2026
cb5189b
Merge pull request #10 from ksksrbiz-arch/dependabot/npm_and_yarn/npm…
ksksrbiz-arch Jan 8, 2026
db4267a
Merge pull request #11 from ksksrbiz-arch/bolt-optimize-button-memo-9…
ksksrbiz-arch Jan 8, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,22 @@
import "styles/tailwind.css"
import type { Metadata } from "next"

export const metadata: Metadata = {
title: "1Commerce | Enterprise Infrastructure Terminal",
description: "Unified API Infrastructure for enterprise service management",
}

export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossOrigin="anonymous" />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700&display=swap"
rel="stylesheet"
/>
</head>
<body>{children}</body>
</html>
)
Expand Down
Loading