новый лендинг

This commit is contained in:
2026-04-26 16:09:08 +04:00
parent 103e2bc4cf
commit 7701aa16c0
24 changed files with 6368 additions and 341 deletions
+8
View File
@@ -0,0 +1,8 @@
import { createRoot } from 'react-dom/client';
import App from './App.jsx';
import '../../css/moonwell.css';
const mount = document.getElementById('root');
if (mount) {
createRoot(mount).render(<App />);
}