summaryrefslogtreecommitdiff
path: root/src/navigation.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/navigation.ts')
-rw-r--r--src/navigation.ts130
1 files changed, 130 insertions, 0 deletions
diff --git a/src/navigation.ts b/src/navigation.ts
new file mode 100644
index 0000000..7186a35
--- /dev/null
+++ b/src/navigation.ts
@@ -0,0 +1,130 @@
+import { getPermalink, getBlogPermalink, getAsset } from './utils/permalinks';
+
+export const headerData = {
+ links: [
+ {
+ text: 'Homes',
+ links: [
+ {
+ text: 'SaaS',
+ href: getPermalink('/homes/saas'),
+ },
+ {
+ text: 'Startup',
+ href: getPermalink('/homes/startup'),
+ },
+ {
+ text: 'Mobile App',
+ href: getPermalink('/homes/mobile-app'),
+ },
+ {
+ text: 'Personal',
+ href: getPermalink('/homes/personal'),
+ },
+ ],
+ },
+ {
+ text: 'Pages',
+ links: [
+ {
+ text: 'Features (Anchor Link)',
+ href: getPermalink('/#features'),
+ },
+ {
+ text: 'Services',
+ href: getPermalink('/services'),
+ },
+ {
+ text: 'Pricing',
+ href: getPermalink('/pricing'),
+ },
+ {
+ text: 'About us',
+ href: getPermalink('/about'),
+ },
+ {
+ text: 'Contact',
+ href: getPermalink('/contact'),
+ },
+ {
+ text: 'Terms',
+ href: getPermalink('/terms'),
+ },
+ {
+ text: 'Polityka prywatności',
+ href: getPermalink('/polityka-prywatnosci'),
+ },
+ ],
+ },
+ {
+ text: 'Landing',
+ links: [
+ {
+ text: 'Lead Generation',
+ href: getPermalink('/landing/lead-generation'),
+ },
+ {
+ text: 'Long-form Sales',
+ href: getPermalink('/landing/sales'),
+ },
+ {
+ text: 'Click-Through',
+ href: getPermalink('/landing/click-through'),
+ },
+ {
+ text: 'Product Details (or Services)',
+ href: getPermalink('/landing/product'),
+ },
+ {
+ text: 'Coming Soon or Pre-Launch',
+ href: getPermalink('/landing/pre-launch'),
+ },
+ {
+ text: 'Subscription',
+ href: getPermalink('/landing/subscription'),
+ },
+ ],
+ },
+ {
+ text: 'Blog',
+ links: [
+ {
+ text: 'Blog List',
+ href: getBlogPermalink(),
+ },
+ {
+ text: 'Article',
+ href: getPermalink('get-started-website-with-astro-tailwind-css', 'post'),
+ },
+ {
+ text: 'Article (with MDX)',
+ href: getPermalink('markdown-elements-demo-post', 'post'),
+ },
+ {
+ text: 'Category Page',
+ href: getPermalink('tutorials', 'category'),
+ },
+ {
+ text: 'Tag Page',
+ href: getPermalink('astro', 'tag'),
+ },
+ ],
+ },
+ {
+ text: 'Widgets',
+ href: '#',
+ },
+ ],
+ actions: [{ text: 'Download', href: 'https://github.com/onwidget/astrowind', target: '_blank' }],
+};
+
+export const footerData = {
+ links: [],
+ secondaryLinks: [],
+ socialLinks: [
+ { text: 'Polityka prywatności', href: getPermalink('/polityka-prywatnosci') },
+ ],
+ footNote: `
+ Strona obsługiwana przez <a class="text-primary underline dark:text-muted" href="https://www.rycerz.xyz/">Craftknight</a> Copyright 2025 © Wszystkie prawa zastrzeżone
+ `,
+};