diff --git a/public/squared_item.png b/public/squared_item.png new file mode 100644 index 0000000..fbe3cd1 Binary files /dev/null and b/public/squared_item.png differ diff --git a/src/components/HorizontalShopItem.astro b/src/components/HorizontalShopItem.astro new file mode 100644 index 0000000..d082abd --- /dev/null +++ b/src/components/HorizontalShopItem.astro @@ -0,0 +1,24 @@ +--- +const { title, img, desc, url, badge, tags, target = "_blank", pricing, oldPricing, checkoutUrl } = Astro.props; +--- + +
+
+ {title} +
+

+ {title} + {badge &&
{badge}
} +

+
+ {pricing} + {oldPricing} +
+

{desc}

+ +
+
+
diff --git a/src/components/SideBar.astro b/src/components/SideBar.astro index 1808f6b..16dddef 100644 --- a/src/components/SideBar.astro +++ b/src/components/SideBar.astro @@ -14,6 +14,7 @@
  • Home
  • Projects
  • +
  • Store
  • Blog
  • CV
  • Support my Work
  • diff --git a/src/pages/blog/[page].astro b/src/pages/blog/[page].astro index da67336..ce52f3e 100644 --- a/src/pages/blog/[page].astro +++ b/src/pages/blog/[page].astro @@ -12,7 +12,7 @@ export async function getStaticPaths({ paginate }) { const { page } = Astro.props; --- - +