Final Commit
This commit is contained in:
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -32,8 +32,8 @@
|
|||||||
<!-- Nepcha Analytics (nepcha.com) -->
|
<!-- Nepcha Analytics (nepcha.com) -->
|
||||||
<!-- Nepcha is a easy-to-use web analytics. No cookies and fully compliant with GDPR, CCPA and PECR. -->
|
<!-- Nepcha is a easy-to-use web analytics. No cookies and fully compliant with GDPR, CCPA and PECR. -->
|
||||||
<script defer data-site="YOUR_DOMAIN_HERE" src="https://api.nepcha.com/js/nepcha-analytics.js"></script>
|
<script defer data-site="YOUR_DOMAIN_HERE" src="https://api.nepcha.com/js/nepcha-analytics.js"></script>
|
||||||
<script type="module" crossorigin src="/assets/index-41fd9f19.js"></script>
|
<script type="module" crossorigin src="/assets/index-fb28742e.js"></script>
|
||||||
<link rel="stylesheet" href="/assets/index-af1a5df8.css">
|
<link rel="stylesheet" href="/assets/index-4cf91620.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="root"></div>
|
<div id="root"></div>
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ export const routes = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
icon: <WrenchScrewdriverIcon {...icon} />,
|
icon: <WrenchScrewdriverIcon {...icon} />,
|
||||||
name: "maintenance",
|
name: "wartung",
|
||||||
path: "/maintenance",
|
path: "/maintenance",
|
||||||
element: <Maintenance />,
|
element: <Maintenance />,
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -2,24 +2,20 @@ import PropTypes from "prop-types";
|
|||||||
import { Typography } from "@material-tailwind/react";
|
import { Typography } from "@material-tailwind/react";
|
||||||
import { HeartIcon } from "@heroicons/react/24/solid";
|
import { HeartIcon } from "@heroicons/react/24/solid";
|
||||||
|
|
||||||
export function Footer({ brandName, brandLink, routes }) {
|
export function Footer() {
|
||||||
const year = new Date().getFullYear();
|
const year = new Date().getFullYear();
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<footer className="py-2">
|
<footer>
|
||||||
<div className="flex w-full flex-wrap items-center justify-center gap-6 px-2 md:justify-between">
|
<div className="flex w-full flex-wrap items-center justify-center md:justify-between">
|
||||||
<Typography variant="small" className="font-normal text-inherit">
|
<Typography variant="small" className="font-normal text-inherit">
|
||||||
© {year}, made with{" "}
|
StackPulse: © {year} by Michael Böhmländer
|
||||||
<HeartIcon className="-mt-0.5 inline-block h-3.5 w-3.5 text-red-600" /> by{" "}
|
|
||||||
<a
|
|
||||||
href={brandLink}
|
|
||||||
target="_blank"
|
|
||||||
className="transition-colors hover:text-blue-500 font-bold"
|
|
||||||
>
|
|
||||||
{brandName}
|
|
||||||
</a>{" "}
|
|
||||||
for a better web.
|
|
||||||
</Typography>
|
</Typography>
|
||||||
|
<Typography variant="small" className="font-normal text-inherit">
|
||||||
|
Tailwind Material Dashboard: © {year} made with{" "}
|
||||||
|
<HeartIcon className="-mt-0.5 inline-block h-3.5 w-3.5 text-red-600" /> by Creative Tim
|
||||||
|
</Typography>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
|
|||||||
@@ -24,8 +24,8 @@ export function Sidenav({ brandImg, brandName, routes }) {
|
|||||||
className={`${sidenavTypes[sidenavType]} ${openSidenav ? "translate-x-0" : "-translate-x-80"
|
className={`${sidenavTypes[sidenavType]} ${openSidenav ? "translate-x-0" : "-translate-x-80"
|
||||||
} fixed inset-0 z-50 my-4 ml-4 h-[calc(100vh-32px)] w-72 rounded-xl transition-transform duration-300 xl:translate-x-0 border border-blue-gray-100`}
|
} fixed inset-0 z-50 my-4 ml-4 h-[calc(100vh-32px)] w-72 rounded-xl transition-transform duration-300 xl:translate-x-0 border border-blue-gray-100`}
|
||||||
>
|
>
|
||||||
<div className="relative py-6 px-8">
|
<div className="relative py-6 px-8 text-right">
|
||||||
<img src={logo} alt="StackPulse" className="w-auto" />
|
<img src={logo} alt="StackPulse" className="w-auto" /><span className="mt-1 text-xs text-stormGrey-500 block antialiased font-sans">v0.4</span>
|
||||||
|
|
||||||
<IconButton
|
<IconButton
|
||||||
variant="text"
|
variant="text"
|
||||||
|
|||||||
Reference in New Issue
Block a user