simplify animation

This commit is contained in:
miloschwartz
2025-12-17 15:52:12 -05:00
parent ad4c44c325
commit e033c10021
6 changed files with 10 additions and 8 deletions

View File

@@ -1,6 +1,6 @@
import type { Metadata } from "next";
import "./globals.css";
import { Geist, Inter, Manrope } from "next/font/google";
import { Geist, Inter, Manrope, Open_Sans } from "next/font/google";
import { ThemeProvider } from "@app/providers/ThemeProvider";
import EnvProvider from "@app/providers/EnvProvider";
import { pullEnv } from "@app/lib/pullEnv";
@@ -30,7 +30,9 @@ export const metadata: Metadata = {
export const dynamic = "force-dynamic";
const font = Inter({ subsets: ["latin"] });
const font = Inter({
subsets: ["latin"]
});
export default async function RootLayout({
children