summaryrefslogtreecommitdiff
path: root/src/navigation.ts
diff options
context:
space:
mode:
authorDawid Rycerz <dawid@rycerz.xyz>2026-02-08 20:11:14 +0100
committerDawid Rycerz <dawid@rycerz.xyz>2026-02-08 20:11:14 +0100
commitbabd05deb4972839242dc76b61d0ea1a842efec3 (patch)
treee3dc34ca6699933626fb304b7adfa1ac7ff5649a /src/navigation.ts
parentd00d86e42659d1b3a86049a290cc64bca0a1b448 (diff)
feat(seo): add JSON-LD schema, keyword optimization, and Plausible analyticsmain
- Add LocalBusiness JSON-LD structured data with services catalog - Update H1 to include "Bydgoszcz" for local SEO targeting - Increase keyword density for detailing/wrapping/tuning/Bydgoszcz - Diversify portfolio image alt texts with keyword-rich descriptions - Add Plausible Analytics script and update privacy policy - Remove unused demo navigation links from headerData - Update footer copyright year to 2026 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Diffstat (limited to 'src/navigation.ts')
-rw-r--r--src/navigation.ts121
1 files changed, 4 insertions, 117 deletions
diff --git a/src/navigation.ts b/src/navigation.ts
index 4c992c4..54f0b08 100644
--- a/src/navigation.ts
+++ b/src/navigation.ts
@@ -1,122 +1,9 @@
-import { getPermalink, getBlogPermalink } from './utils/permalinks';
+import { getPermalink } from './utils/permalinks';
import { SITE } from 'astrowind:config';
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' }],
+ links: [],
+ actions: [],
};
export const footerData = {
@@ -144,6 +31,6 @@ export const footerData = {
: []),
],
footNote: `
- <span class="text-xs text-gray-300">Strona obsługiwana przez <a class="text-blue-400 hover:text-blue-300 underline" href="https://www.rycerz.xyz/">Craftknight</a> Copyright 2025 © Wszystkie prawa zastrzeżone</span>
+ <span class="text-xs text-gray-300">Strona obsługiwana przez <a class="text-blue-400 hover:text-blue-300 underline" href="https://www.rycerz.xyz/">Craftknight</a> Copyright 2026 © Wszystkie prawa zastrzeżone</span>
`,
};