+ {/* TODO: i18n properly */}
+
+ The Plone® Open Source CMS/WCM is © 2000-2024 by the Plone Foundation
+ and friends.
+ Distributed under the GNU GPL license.
+
+
+ {siteActions?.length
+ ? siteActions.map((item) => (
+ -
+
+ {item?.title}
+
+
+ ))
+ : null}
+
+
+
+
+
+ Powered by Plone & Python
+
+
+ );
+};
+
+export default Footer;
diff --git a/packages/slots/components/Navigation.stories.tsx b/packages/slots/components/Navigation.stories.tsx
new file mode 100644
index 0000000000..3aee92ac77
--- /dev/null
+++ b/packages/slots/components/Navigation.stories.tsx
@@ -0,0 +1,46 @@
+import React from 'react';
+import Navigation from './Navigation';
+
+import type { Meta, StoryObj } from '@storybook/react';
+
+const meta = {
+ title: 'Navigation',
+ component: Navigation,
+ parameters: {
+ layout: 'centered',
+ },
+ tags: ['autodocs'],
+} satisfies Meta