feat: better metadata, robots, and sitemap; simplify layout w/ AnimatedTitle and I18nProvider components

This commit is contained in:
Aidan 2025-08-04 02:27:38 -04:00
parent a37938e8c7
commit 5dc930bcbb
5 changed files with 136 additions and 57 deletions

View file

@ -0,0 +1,8 @@
"use client";
import { ReactNode } from "react";
import "../i18n";
export default function I18nProvider({ children }: { children: ReactNode }) {
return <>{children}</>;
}