Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
GrantBirki committed Aug 5, 2023
1 parent e35839f commit 37f0532
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/config/components/header.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,27 +71,27 @@ const headerData = {

// The blog link is a special case, it uses the getBlogPermalink function
{
text: "Blog",
text: 'Blog',
links: [
{
text: "Blog List",
text: 'Blog List',
href: getBlogPermalink(),
},
{
text: "Article",
href: getPermalink("get-started-website-with-astro-tailwind-css", "post"),
text: 'Article',
href: getPermalink('get-started-website-with-astro-tailwind-css', 'post'),
},
{
text: "Article (with Widgets)",
href: getPermalink("markdown-elements-demo-post", "post"),
text: 'Article (with Widgets)',
href: getPermalink('markdown-elements-demo-post', 'post'),
},
{
text: "Category Page",
href: getPermalink("tutorials", "category"),
text: 'Category Page',
href: getPermalink('tutorials', 'category'),
},
{
text: "Tag Page",
href: getPermalink("astro", "tag"),
text: 'Tag Page',
href: getPermalink('astro', 'tag'),
},
],
},
Expand Down

0 comments on commit 37f0532

Please sign in to comment.