This commit is contained in:
@@ -36,7 +36,7 @@ const Blog = ({ posts }: { posts: Post[] }) => {
|
|||||||
<h1 className="text-3xl font-bold text-gray-800 dark:text-gray-200">
|
<h1 className="text-3xl font-bold text-gray-800 dark:text-gray-200">
|
||||||
Blog
|
Blog
|
||||||
</h1>
|
</h1>
|
||||||
<div className="w-full h-0.5 bg-violet-200 dark:bg-violet-700 my-4 rounded-full" />
|
<div className="w-full h-0.5 bg-violet-200 dark:bg-white/20 my-4 rounded-full" />
|
||||||
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
|
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
|
||||||
{posts.map((post, index) => (
|
{posts.map((post, index) => (
|
||||||
<BlogCard
|
<BlogCard
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ const Projects = ({ posts }: { posts: Post[] }) => {
|
|||||||
<h1 className="text-3xl font-bold text-gray-800 dark:text-gray-100">
|
<h1 className="text-3xl font-bold text-gray-800 dark:text-gray-100">
|
||||||
Projects
|
Projects
|
||||||
</h1>
|
</h1>
|
||||||
<div className="w-full h-0.5 bg-violet-200 dark:bg-violet-700 my-4 rounded-full" />
|
<div className="w-full h-0.5 bg-violet-200 dark:bg-white/20 my-4 rounded-full" />
|
||||||
<div className="grid grid-cols-1 gap-4">
|
<div className="grid grid-cols-1 gap-4">
|
||||||
{posts.map((post, index) => (
|
{posts.map((post, index) => (
|
||||||
<ProjectCard
|
<ProjectCard
|
||||||
|
|||||||
Reference in New Issue
Block a user