diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index a864cb6e..1c57ce0f 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -6,7 +6,7 @@ import './styles.css' export default function Page() { return ( -
+
diff --git a/src/app/blog/author/[author]/page.tsx b/src/app/blog/author/[author]/page.tsx index 226efbbd..592edc30 100644 --- a/src/app/blog/author/[author]/page.tsx +++ b/src/app/blog/author/[author]/page.tsx @@ -28,7 +28,7 @@ export default function Page({ params }: Props) { const postList = getPostsByAuthor(author.user) return ( -
+

{author.name}

diff --git a/src/app/blog/categories/[category]/page.tsx b/src/app/blog/categories/[category]/page.tsx index fbe5b12b..c7393c46 100644 --- a/src/app/blog/categories/[category]/page.tsx +++ b/src/app/blog/categories/[category]/page.tsx @@ -31,7 +31,7 @@ export default function Page({ params }: Props) { const postList = getSortedPosts(getPostListOfCategory(slug(category))) return ( -
+

{getNormalCategoryString(category)} diff --git a/src/app/blog/categories/page.tsx b/src/app/blog/categories/page.tsx index b2815120..d8eeaaf5 100644 --- a/src/app/blog/categories/page.tsx +++ b/src/app/blog/categories/page.tsx @@ -15,7 +15,7 @@ export default function Page() { const categories = getCategoriesAndNumberOfPosts() return ( -
+

Categories

diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 87990716..e886bd55 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -16,7 +16,7 @@ export default function Page() { const posts = getSortedPosts(allPosts) return ( -
+
) diff --git a/src/app/blog/post/[slug]/page.tsx b/src/app/blog/post/[slug]/page.tsx index 016b3c7c..eafa6908 100644 --- a/src/app/blog/post/[slug]/page.tsx +++ b/src/app/blog/post/[slug]/page.tsx @@ -82,7 +82,7 @@ export default function Page({ params }: Props) { const author = post.author_info return ( -
+

diff --git a/src/app/blog/tag/[tag]/page.tsx b/src/app/blog/tag/[tag]/page.tsx index d084f3a3..a4c9c16f 100644 --- a/src/app/blog/tag/[tag]/page.tsx +++ b/src/app/blog/tag/[tag]/page.tsx @@ -28,7 +28,7 @@ export default function Page({ params }: Props) { const postList = getSortedPosts(getPostListBasedOnTag(slug(tag))) return ( -
+

{getNormalTagString(tag)} diff --git a/src/app/blog/tag/page.tsx b/src/app/blog/tag/page.tsx index be16f060..35eef091 100644 --- a/src/app/blog/tag/page.tsx +++ b/src/app/blog/tag/page.tsx @@ -15,7 +15,7 @@ export default function Page() { const tags = getTagsAndNumberOfPosts() return ( -
+

Tags

{tags diff --git a/src/app/components/footer.tsx b/src/app/components/footer.tsx index 350c1175..76f78f50 100644 --- a/src/app/components/footer.tsx +++ b/src/app/components/footer.tsx @@ -19,7 +19,7 @@ export function Footer() { return (
-
+
-
+

+
diff --git a/src/app/projects/page.tsx b/src/app/projects/page.tsx index 0ecc2101..7873d196 100644 --- a/src/app/projects/page.tsx +++ b/src/app/projects/page.tsx @@ -13,7 +13,7 @@ export default function Page() { .sort((a, b) => Number(a.priority) - Number(b.priority)) return ( -
+

Projects

diff --git a/src/styles/utilities.css b/src/styles/utilities.css index 221df8c6..4e055400 100644 --- a/src/styles/utilities.css +++ b/src/styles/utilities.css @@ -1,7 +1,7 @@ @tailwind utilities; @layer utilities { - .blog-content-w { + .content-container { @apply w-full px-4 md:max-w-4xl md:px-0; } .content-vertical-spaces {