mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-04 10:44:52 +00:00
a339ce9a8c
- Successfully organized all MetaBuilder documentation into a clear, hierarchical structure. - Created new navigation files including a master index and a new contributor path. - Updated existing documentation files to reflect the new structure. - Reduced root-level clutter by organizing configuration files into dedicated directories. - Added new configuration files for ESLint, Next.js, Playwright, and Vite. - Created example schemas and size limits reports for better project insights. - Removed deprecated Vite config backups to streamline the project.
20 lines
714 B
HTML
20 lines
714 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>MetaBuilder - Multi-Tenant 5-Level Application Platform</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=IBM+Plex+Sans:wght@400;500&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
|
|
<link href="/src/main.css" rel="stylesheet" />
|
|
</head>
|
|
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
|
|
</html>
|