Skip to content

Commit

Permalink
Merge pull request #51 from fiqryq/50-fix-timeline-list-on-about-page
Browse files Browse the repository at this point in the history
fix: timeline broken #50
  • Loading branch information
fiqryq authored Dec 25, 2022
2 parents 79f42a5 + 98de4a7 commit c2f9e6b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion public/rss/feed.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<title>Fiqry choerudin</title>
<link>https://fiqry.dev/</link>
<description></description>
<lastBuildDate>Sun, 25 Dec 2022 03:16:32 GMT</lastBuildDate>
<lastBuildDate>Sun, 25 Dec 2022 03:28:40 GMT</lastBuildDate>
<docs>https://validator.w3.org/feed/docs/rss2.html</docs>
<generator>https://github.com/jpmonette/feed</generator>
<image>
Expand Down
16 changes: 8 additions & 8 deletions public/sitemap-0.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:news="http://www.google.com/schemas/sitemap-news/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:mobile="http://www.google.com/schemas/sitemap-mobile/1.0" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xmlns:video="http://www.google.com/schemas/sitemap-video/1.1">
<url><loc>https://fiqry.dev</loc><lastmod>2022-12-25T03:16:33.527Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://fiqry.dev/about</loc><lastmod>2022-12-25T03:16:33.527Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://fiqry.dev/blog</loc><lastmod>2022-12-25T03:16:33.527Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://fiqry.dev/blog/post/create-nodejs-simple-app</loc><lastmod>2022-12-25T03:16:33.527Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://fiqry.dev/blog/post/nabung</loc><lastmod>2022-12-25T03:16:33.527Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://fiqry.dev/blog/post/ternary-operation</loc><lastmod>2022-12-25T03:16:33.527Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://fiqry.dev/gear</loc><lastmod>2022-12-25T03:16:33.527Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://fiqry.dev/project</loc><lastmod>2022-12-25T03:16:33.527Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://fiqry.dev</loc><lastmod>2022-12-25T03:28:41.434Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://fiqry.dev/about</loc><lastmod>2022-12-25T03:28:41.434Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://fiqry.dev/blog</loc><lastmod>2022-12-25T03:28:41.434Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://fiqry.dev/blog/post/create-nodejs-simple-app</loc><lastmod>2022-12-25T03:28:41.434Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://fiqry.dev/blog/post/nabung</loc><lastmod>2022-12-25T03:28:41.434Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://fiqry.dev/blog/post/ternary-operation</loc><lastmod>2022-12-25T03:28:41.434Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://fiqry.dev/gear</loc><lastmod>2022-12-25T03:28:41.434Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://fiqry.dev/project</loc><lastmod>2022-12-25T03:28:41.434Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
</urlset>
4 changes: 2 additions & 2 deletions src/components/timeline/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import clsx from 'clsx';
const Timeline = () => {
return (
<div className="flow-root">
<div role="list" className="-mb-8 px-5 lg:px-0">
<ul className="-mb-8 px-5 lg:px-0">
{timeline.map((items, itemsIdx) => (
<li key={items.id}>
<div className="relative pb-8">
Expand Down Expand Up @@ -58,7 +58,7 @@ const Timeline = () => {
</div>
</li>
))}
</div>
</ul>
</div>
);
};
Expand Down

1 comment on commit c2f9e6b

@vercel
Copy link

@vercel vercel bot commented on c2f9e6b Dec 25, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.