Files
asle/frontend/app/layout.tsx
defiQUG 507d9a35b1 Add initial project structure and documentation files
- Created .gitignore to exclude sensitive files and directories.
- Added API documentation in API_DOCUMENTATION.md.
- Included deployment instructions in DEPLOYMENT.md.
- Established project structure documentation in PROJECT_STRUCTURE.md.
- Updated README.md with project status and team information.
- Added recommendations and status tracking documents.
- Introduced testing guidelines in TESTING.md.
- Set up CI workflow in .github/workflows/ci.yml.
- Created Dockerfile for backend and frontend setups.
- Added various service and utility files for backend functionality.
- Implemented frontend components and pages for user interface.
- Included mobile app structure and services.
- Established scripts for deployment across multiple chains.
2025-12-03 21:22:31 -08:00

33 lines
807 B
TypeScript

import type { Metadata } from 'next'
import { Inter } from 'next/font/google'
import './globals.css'
import { Providers } from './providers'
import { ToastNotifications } from '@/components/ToastNotifications'
import { ErrorBoundary } from '@/components/ErrorBoundary'
const inter = Inter({ subsets: ['latin'] })
export const metadata: Metadata = {
title: 'ASLE - Ali & Saum Liquidity Engine',
description: 'Hybrid Cross-Chain Liquidity Infrastructure',
}
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en">
<body className={inter.className}>
<ErrorBoundary>
<Providers>
{children}
<ToastNotifications />
</Providers>
</ErrorBoundary>
</body>
</html>
)
}