Updated app

This commit is contained in:
Derek Slenk 2025-06-26 15:13:25 +00:00
parent 3696b98582
commit 865db04a43
5 changed files with 177 additions and 24 deletions

View file

@ -1,9 +1,11 @@
import type {Metadata} from 'next';
import type { Metadata } from 'next';
import './globals.css';
import { Toaster } from '@/components/ui/toaster';
export const metadata: Metadata = {
title: 'Firebase Studio App',
description: 'Generated by Firebase Studio',
title: 'Cheating Chelsea Exposed',
description:
"Exposing the harm caused by Chelsea Smallwood and 'The Other Woman and the Wife' group.",
};
export default function RootLayout({
@ -14,11 +16,21 @@ export default function RootLayout({
return (
<html lang="en">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter&display=swap" rel="stylesheet"></link>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link
rel="preconnect"
href="https://fonts.gstatic.com"
crossOrigin="anonymous"
/>
<link
href="https://fonts.googleapis.com/css2?family=Inter&display=swap"
rel="stylesheet"
/>
</head>
<body className="font-body antialiased">{children}</body>
<body className="font-body antialiased">
{children}
<Toaster />
</body>
</html>
);
}