+
+
+
+
+ Freeland
+
+
+
+
+ {mainLinksPart}
+
+
+
+
+
+
+ {" "}
+
+
+
+
+
+
+
+ @ Copyright 2022 Freeland - All rights reserved
+
+
{circleDivider}
+
{secondaryLinksPart}
+
+
+ Supported by
+
+ Comfortel
+
+
+
+
+ );
+}
diff --git a/src/components/typography/RouterLink.tsx b/src/components/typography/RouterLink.tsx
new file mode 100644
index 0000000..4b32e77
--- /dev/null
+++ b/src/components/typography/RouterLink.tsx
@@ -0,0 +1,18 @@
+import classNames from "classnames";
+import { NavLink, NavLinkProps, To } from "react-router-dom";
+
+type Props = {
+ enabled?: boolean;
+ children?: React.ReactNode;
+} & NavLinkProps;
+
+export function RouterLink({ children, enabled = true, className, to }: Props) {
+ return (
+