- - {project.name} - -
-{project.description}
-- {" "} - - {project.primaryLanguage.name} - - {project.stargazerCount > 0 && ( - - - ⭐️ - - {project.stargazerCount} - - )} -
-diff --git a/README.md b/README.md
index b899784..54289c6 100644
--- a/README.md
+++ b/README.md
@@ -1,15 +1,16 @@
## ✨ My personal website built with Next.js
-[![Website](https://img.shields.io/badge/my_website-000?style=for-the-badge&logo=ko-fi&logoColor=white)](https://www.alpozkan.info?utm_source=github-info&utm_medium=github-count&utm_campaign=github-readme&utm_id=github)
+[![Website](https://img.shields.io/badge/my_website-000?style=for-the-badge&logo=ko-fi&logoColor=white)](https://www.alpozkan.info?utm_source=github-info&utm_medium=github-count&utm_campaign=github-readme&utm_id=github)
# 💫 About Me:
-As a seasoned Product Executive with over 10 years of experience, I have consistently delivered groundbreaking products in diverse industries such as E-commerce, FinTech, Delivery Service, Blockchain, and Mobile Apps.
My proven track record includes successfully launching more than 75 products on an international scale. Adept at building robust product organizations, I possess a keen understanding of every stage of product development, from early ideation to launch.
+As a seasoned Product Executive with over 10 years of experience, I have consistently delivered groundbreaking products in diverse industries such as E-commerce, FinTech, Delivery Service, Blockchain, and Mobile Apps.
My proven track record includes successfully launching more than 75 products on an international scale. Adept at building robust product organizations, I possess a keen understanding of every stage of product development, from early ideation to launch.
## 🌐 Socials:
-[![Resume](https://img.shields.io/badge/my_resume-000?style=for-the-badge&logo=ko-fi&logoColor=white)](https://bit.ly/Resume-Alp-Ozkan)
-[![LinkedIn](https://img.shields.io/badge/linkedin-0A66C2?style=for-the-badge&logo=linkedin&logoColor=white)](https://linkedin.com/in/alpozkan)
-[![Medium](https://img.shields.io/badge/medium-000?style=for-the-badge&logo=medium&logoColor=white)](https://medium.com/@alpozkanm)
+
+[![Resume](https://img.shields.io/badge/my_resume-000?style=for-the-badge&logo=ko-fi&logoColor=white)](https://bit.ly/Resume-Alp-Ozkan)
+[![LinkedIn](https://img.shields.io/badge/linkedin-0A66C2?style=for-the-badge&logo=linkedin&logoColor=white)](https://linkedin.com/in/alpozkan)
+[![Medium](https://img.shields.io/badge/medium-000?style=for-the-badge&logo=medium&logoColor=white)](https://medium.com/@alpozkanm)
[![Twitter](https://img.shields.io/badge/twitter-1DA1F2?style=for-the-badge&logo=twitter&logoColor=white)](https://twitter.com/Alpozkanm)
----
\ No newline at end of file
+---
diff --git a/app/blog/page.tsx b/app/blog/page.tsx
index c0f8f6e..4c04fa0 100644
--- a/app/blog/page.tsx
+++ b/app/blog/page.tsx
@@ -1,4 +1,4 @@
-import { allPosts } from "contentlayer/generated";
+import { allContents } from "contentlayer/generated";
import { compareDesc } from "date-fns";
import Posts from "~/components/posts";
import { Metadata } from "next";
@@ -8,7 +8,10 @@ export const metadata: Metadata = {
};
export default function BlogPage() {
- const posts = allPosts.sort((a, b) => {
+ const filteredProjects = allContents.filter((post) => {
+ return post.image.includes("1_");
+ });
+ const posts = filteredProjects.sort((a, b) => {
return compareDesc(new Date(a.date), new Date(b.date));
});
diff --git a/app/page.tsx b/app/page.tsx
index 233a7e1..82f3f35 100644
--- a/app/page.tsx
+++ b/app/page.tsx
@@ -1,12 +1,15 @@
import Link from "next/link";
-import { allPosts } from "contentlayer/generated";
+import { allContents } from "contentlayer/generated";
import { compareDesc } from "date-fns";
import Hello from "~/components/hello";
import Posts from "~/components/posts";
import NewsletterSignup from "~/components/newsletter-signup";
export default function Home() {
- const posts = allPosts
+ const filteredProjects = allContents.filter((post) => {
+ return post.image.includes("1_");
+ });
+ const posts = filteredProjects
.sort((a, b) => {
return compareDesc(new Date(a.date), new Date(b.date));
})
@@ -29,7 +32,7 @@ export default function Home() {
className="font-bold text-gray-100 hover:text-white"
href="/blog"
>
- See all posts
+ See all posts
{project.description}
-- {" "} - - {project.primaryLanguage.name} - - {project.stargazerCount > 0 && ( - - - ⭐️ - - {project.stargazerCount} - - )} -
-{project.description}
+