Skip to content

Commit

Permalink
Run jobs in sequence
Browse files Browse the repository at this point in the history
  • Loading branch information
danmindru committed Nov 16, 2024
1 parent aed5065 commit 123d2d4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion shipixen/app/tag-data.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"design":1,"graphics":1,"marketing":4,"productivity":7,"efficiency":7,"tools":9,"ai":6,"machine-learning":4,"automation":4,"seo":3,"promotion":2,"developer":2,"macos":2,"voice":2,"text-to-speech":2,"books":1,"learning":1,"programming":1,"themes":1,"plugins":1,"customization":1,"optimization":1,"startup":1,"saas":2,"business":1,"health":1,"fitness":1,"wellness":1,"nextjs":1,"react":1}
{"design":1,"graphics":1,"marketing":4,"productivity":7,"efficiency":7,"tools":9,"ai":5,"machine-learning":3,"automation":3,"seo":3,"promotion":2,"developer":2,"macos":2,"voice":2,"text-to-speech":2,"books":1,"learning":1,"programming":1,"themes":1,"plugins":1,"customization":1,"optimization":1,"startup":1,"saas":2,"business":1,"health":1,"fitness":1,"wellness":1,"nextjs":1,"react":1}
2 changes: 1 addition & 1 deletion shipixen/components/shared/SectionContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default function SectionContainer({
className,
}: Props) {
return (
<section className={clsx(className, 'w-full', `container-${type}`)}>
<section className={clsx(className, 'w-full', `p-6 container-${type}`)}>
{children}
</section>
);
Expand Down
6 changes: 3 additions & 3 deletions shipixen/layouts/PostLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ export default function PostLayout({
{prev && prev.path && (
<div>
<h2 className="text-xs uppercase tracking-wide text-gray-500 dark:text-gray-400">
Previous Article
Previous Deal
</h2>
<div className="text-primary-500 hover:text-primary-600 dark:hover:text-primary-400">
<Link href={`/${prev.path}`}>{prev.title}</Link>
Expand All @@ -155,7 +155,7 @@ export default function PostLayout({
{next && next.path && (
<div>
<h2 className="text-xs uppercase tracking-wide text-gray-500 dark:text-gray-400">
Next Article
Next Deal
</h2>
<div className="text-primary-500 hover:text-primary-600 dark:hover:text-primary-400">
<Link href={`/${next.path}`}>{next.title}</Link>
Expand All @@ -171,7 +171,7 @@ export default function PostLayout({
className="text-primary-500 hover:text-primary-600 dark:hover:text-primary-400"
aria-label="More deals"
>
More deals &rarr;
More Deals &rarr;
</Link>
</div>
</div>
Expand Down

0 comments on commit 123d2d4

Please sign in to comment.