diff --git a/app/blogs/page.tsx b/app/blogs/page.tsx index eb95526..4d99853 100644 --- a/app/blogs/page.tsx +++ b/app/blogs/page.tsx @@ -8,12 +8,12 @@ const BlogsPage = async () => { return ( <> - - + + + Writing helps me clarify what I'm learning and share the ideas, + patterns, and lessons I pick up along the way. Each piece is a snapshot + of how I was thinking about the problem at the time. +
{blogs.map((blog) => ( diff --git a/app/globals.css b/app/globals.css index 10578f9..241e2fc 100644 --- a/app/globals.css +++ b/app/globals.css @@ -25,14 +25,22 @@ --bg-astro: #c2410c26; --cloudinary: #a5b4fc; --bg-cloudinary: #4338ca26; + --cli: #c4b5fd; + --bg-cli: #6d28d926; --css: #67e8f9; --bg-css: #0e749026; --ejs: #bef264; --bg-ejs: #4d7c0f26; --express: #cbd5e1; --bg-express: #33415526; + --go: #67e8f9; + --bg-go: #0e749026; + --interpreter: #f9a8d4; + --bg-interpreter: #be185d26; --javascript: #fde047; --bg-javascript: #a1620726; + --library: #fca5a5; + --bg-library: #b91c1c26; --mdx: #fcd34d; --bg-mdx: #fcd34d26; --mongodb: #86efac; @@ -43,6 +51,8 @@ --bg-netlify: #0f766e26; --nextjs: #d4d4d4; --bg-nextjs: #a3a3a326; + --package: #cbd5e1; + --bg-package: #33415526; --passport: #6ee7b7; --bg-passport: #6ee7b726; --node: #86efac; @@ -53,6 +63,8 @@ --bg-railway: #33415526; --react: #5eead4; --bg-react: #0f766e26; + --rust: #fdba74; + --bg-rust: #c2410c26; --tailwind: #67e8f9; --bg-tailwind: #0e749026; --typescript: #93c5fd; diff --git a/app/layout.tsx b/app/layout.tsx index 862453a..49e243c 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,11 +1,12 @@ +import type { Metadata } from "next"; import Header from "@/components/Header"; import "./globals.css"; import { scope } from "@/lib/fonts"; import Footer from "@/components/Footer"; -export const metadata = { - title: "Hire Me!", - description: "Brian Schnee Portfolio", +export const metadata: Metadata = { + title: "schnee.dev", + description: "Brian Schnee's website", }; export default function RootLayout({ @@ -17,7 +18,7 @@ export default function RootLayout({
-
+
{children}