AEAl-Andalus⺢Experience
Sign in · Join
AEAl-Andalus⺢Experience
ProjectsGalleryAboutArticlesDashboardAPI
© 2026 — Modular content systems☕buy me a coffee
Framework Study Guide
ChaptersCardsLegendRoadmapRoute Map
Cards
Card · LegendCard · Server PageCard · Client ComponentCard · Entity ActionsCard · Server ActionsCard · Context ProviderCard · API RouteCard · Types & PrismaCard · Entity-FirstCard · DeploymentCard · Next 16 + Prisma 7Card · CSS & TailwindCard · Libraries & AcceleratorsCard · Prisma 7 (Next App Router)Card · TypeORMCard · DrizzleCard · Special FilesCard · Client BoundariesCard · Next 16: cache, PPR, proxy, AI
→ chapters/00-layout

Card · Legend

Colour keys and miniature of the global shell.

Colour Key

  • 🔴 Server Action · 🟢 Type · 🔵 Prop/Input
  • 🟠 Context · 🟣 Language/JS · 🟡 DB · ⚫ Config
  • Bold → security · _italic_ → UX · underline → perf

Root Shell Snapshot

export default async function RootLayout({ children }) {
const permissions = await resolveGlobalPermissions();
return (<html><body>
<EditModeProvider canEdit=permissions.canEdit>
<AIEngineProvider>
<Providers session=permissions.session>
{children}
</Providers>
</AIEngineProvider>
</EditModeProvider>
</body></html>);
}

Study Card · Chapter 00-layout