Some checks failed
CD Pipeline / Deploy to Staging (push) Failing after 20s
CI Pipeline / Lint and Type Check (push) Failing after 32s
CI Pipeline / Build (push) Has been skipped
CI Pipeline / Test Backend (push) Failing after 1m28s
CI Pipeline / Test Frontend (push) Failing after 33s
CI Pipeline / Security Scan (push) Failing after 1m6s
Deploy to Staging / Deploy to Staging (push) Failing after 33s
Portal CI / Portal Lint (push) Failing after 20s
Portal CI / Portal Type Check (push) Failing after 22s
Portal CI / Portal Test (push) Failing after 21s
Portal CI / Portal Build (push) Failing after 20s
Test Suite / frontend-tests (push) Failing after 32s
Test Suite / api-tests (push) Failing after 52s
Test Suite / blockchain-tests (push) Failing after 30s
Type Check / type-check (map[directory:. name:root]) (push) Failing after 23s
Type Check / type-check (map[directory:api name:api]) (push) Failing after 18s
Type Check / type-check (map[directory:portal name:portal]) (push) Failing after 18s
CD Pipeline / Deploy to Production (push) Has been skipped
Replace the generic S wordmark with geometric Sankofa, Phoenix, and PanTel marks, institutional palette tokens, IBM Plex Sans, ecosystem trinity homepage, /brand reference page, corporate graphics, and portal shell refresh. Co-authored-by: Cursor <cursoragent@cursor.com>
28 lines
687 B
TypeScript
28 lines
687 B
TypeScript
'use client';
|
|
|
|
import { IBM_Plex_Sans } from 'next/font/google';
|
|
|
|
import { AppShell } from '@/components/layout/AppShell';
|
|
|
|
import { Providers } from './providers';
|
|
|
|
const ibmPlexSans = IBM_Plex_Sans({
|
|
subsets: ['latin'],
|
|
weight: ['400', '500', '600', '700'],
|
|
variable: '--font-ibm-plex',
|
|
});
|
|
|
|
export function ClientRootLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<html lang="en">
|
|
<body
|
|
className={`${ibmPlexSans.variable} ${ibmPlexSans.className} min-h-screen bg-sovereign-obsidian text-sovereign-ivory antialiased`}
|
|
>
|
|
<Providers>
|
|
<AppShell>{children}</AppShell>
|
|
</Providers>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|