2023-12-16 21:00:29 +00:00
|
|
|
<!doctype html>
|
2023-04-19 21:40:25 +00:00
|
|
|
<html lang="en">
|
2023-04-19 22:59:25 +00:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
2023-04-20 15:23:56 +00:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
|
2023-04-22 18:06:06 +00:00
|
|
|
<title>My Website</title>
|
2023-06-07 19:20:57 +00:00
|
|
|
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
|
2023-04-19 22:59:25 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2023-12-16 22:12:06 +00:00
|
|
|
<div id="root">
|
|
|
|
<div className="min-h-screen">
|
|
|
|
<div className=min-h-screen flex flex-col max-w-screen-2xl mx-auto xl:flex-row>
|
|
|
|
|
|
|
|
<div className=p-4 w-full xl:w-auto xl:max-w-xs xl:min-h-screenborder-0 border-solid border-gray-300 dark:border-gray-700 border-b xl:border-r xl:border-b-0>
|
|
|
|
|
|
|
|
<div className="p-2 xl:p-4 flex flex-nowrap justify-center items-center gap-2 xl:flex-wrap">
|
|
|
|
<img src={icon} alt={title} className="inline-block w-16 h-16" />
|
|
|
|
<h1>{title}</h1>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div className=p-4 flex-grow min-h-screen>
|
|
|
|
<ServiceCatalogList catalogs={mySerices} />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-04-19 22:59:25 +00:00
|
|
|
</body>
|
2023-04-19 21:40:25 +00:00
|
|
|
</html>
|