update seo

This commit is contained in:
neutrino2211
2025-09-20 00:56:08 +01:00
parent 8177a48df1
commit e961d4d88b
7 changed files with 174 additions and 5 deletions

View File

@@ -1,7 +1,22 @@
import type { Metadata } from "next";
import Link from "next/link";
import { getThoughts } from "@/data/creativeData";
import ExpandableThought from "@/components/ExpandableThought";
export const metadata: Metadata = {
title: "Thoughts",
description: "Reflections on technology, life, and the intersection of creativity and code. Read my thoughts on software development, cybersecurity, and digital innovation.",
openGraph: {
title: "Thoughts | Mainasara Tsowa",
description: "Reflections on technology, life, and the intersection of creativity and code.",
url: "https://mainasara.dev/thoughts",
},
twitter: {
title: "Thoughts | Mainasara Tsowa",
description: "Reflections on technology, life, and the intersection of creativity and code.",
},
};
export default async function ThoughtsPage() {
const thoughts = await getThoughts();