change theme and cleanup added favicon

This commit is contained in:
will
2026-04-03 16:45:28 +01:00
parent 4020cb239c
commit 6ed27569d6
15 changed files with 538 additions and 564 deletions

View File

@@ -2,10 +2,9 @@ import type { Metadata } from 'next';
import { GeistSans } from 'geist/font/sans';
import { GeistMono } from 'geist/font/mono';
import './globals.css';
import TechBackdrop from './TechBackdrop';
export const metadata: Metadata = {
title: 'William March — Software Engineer',
title: 'williammarch.xyz',
description: 'Software engineer building precise, purposeful open-source tools.',
metadataBase: new URL('https://williammarch.xyz'),
openGraph: {
@@ -24,9 +23,8 @@ export const metadata: Metadata = {
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en" className={`${GeistSans.variable} ${GeistMono.variable}`}>
<body className="bg-slate-950 text-slate-100 relative overflow-x-hidden">
<body className="white text-slate-100 relative overflow-x-hidden">
<div aria-hidden="true" className="fixed inset-0 -z-10">
<TechBackdrop />
</div>
<div className="relative">
{children}