base table

This commit is contained in:
Artyom Tsyrulnikov
2025-07-13 11:32:05 +03:00
commit f74f52f1a4
32 changed files with 2284 additions and 0 deletions

3
src/pages/Home/index.ts Normal file
View File

@@ -0,0 +1,3 @@
import Home from "./ui/Page/Page";
export { Home };

View File

@@ -0,0 +1,12 @@
import { FC } from "react";
import { Spreadsheet } from "../../../../widgets";
const Home: FC = () => {
return (
<div className="h-screen bg-gray-50">
<Spreadsheet />
</div>
);
};
export default Home;

View File

@@ -0,0 +1,3 @@
import NoMatch from "./ui/Page/Page";
export { NoMatch };

View File

@@ -0,0 +1,20 @@
import { FC } from "react";
import { Link } from "react-router-dom";
const NoMatch: FC = () => {
return (
<section>
<div className="flex min-h-screen w-screen flex-col items-center justify-center gap-y-5">
<h1 className="bg-gradient-to-l from-primary-content via-secondary to-primary bg-clip-text text-9xl font-bold text-transparent">
404
</h1>
<p className="text-3xl font-medium text-neutral">Page not found</p>
<Link className="btn-primary-content btn px-16" to="/">
Go back
</Link>
</div>
</section>
);
};
export default NoMatch;

4
src/pages/index.ts Normal file
View File

@@ -0,0 +1,4 @@
import { Home } from "./Home";
import { NoMatch } from "./NoMatch";
export { Home, NoMatch };