Polish website flow and add Questions story

This commit is contained in:
2026-08-24 12:26:54 -04:00
parent dcc1fff784
commit 33d4f19bf0
16 changed files with 385 additions and 232 deletions
+8 -1
View File
@@ -1,6 +1,6 @@
import "~/styles/globals.css";
import { type Metadata } from "next";
import { type Metadata, type Viewport } from "next";
import { Instrument_Sans, Playfair_Display } from "next/font/google";
import { UmamiAnalytics } from "~/components/umami-analytics";
@@ -42,6 +42,13 @@ export const metadata: Metadata = {
},
};
export const viewport: Viewport = {
themeColor: [
{ media: "(prefers-color-scheme: light)", color: "#f4f9f7" },
{ media: "(prefers-color-scheme: dark)", color: "#071415" },
],
};
export default function RootLayout({
children,
}: Readonly<{ children: React.ReactNode }>) {