updated route sites available

This commit is contained in:
2025-04-09 17:44:06 +03:00
parent 9b02620d1d
commit 531e8b2e39
11 changed files with 173 additions and 134 deletions

View File

@@ -4,15 +4,12 @@ import { PageProps } from "./interFaces";
function App000001({ lang, queryParams }: PageProps) {
return (
<>
<div className="flex flex-col w-3/4">
<div className="flex">
{/* Sticky Header */}
<header className="sticky top-0 bg-white shadow-md z-10 p-4 flex justify-between items-center">
<h1 className="text-2xl font-semibold">Dashboard</h1>
<div className="flex items-center space-x-4">
{JSON.stringify({
lang,
queryParams,
})}
{JSON.stringify({ lang, queryParams })}
<input
type="text"
placeholder="Search..."

View File

@@ -8,7 +8,7 @@ export const PageIndexs = {
app000001: App000001,
};
function UnAuthorizedPage({ lang }: PageProps) {
function UnAuthorizedPage({ lang, queryParams }: PageProps) {
return (
<>
<div className="flex flex-col h-screen">