From d15d4d350db7b246224b4451c232265a4c010a1d Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 07:43:31 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++------------------------------------- 1 file changed, 10 insertions(+), 45 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f069719..1016505 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,24 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; +import { DM_Sans } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], +const dmSans = DM_Sans({ + subsets: ["latin"], + weight: ["400", "500", "600", "700"], }); export const metadata: Metadata = { - title: "Emphra - Intelligent Reflection Layer for the Internet", description: "Emphra is a privacy-first Chrome Extension that detects emotionally risky messages before they're sent. Real-time toxicity detection, beautiful intervention design, and local anonymized analytics for mindful digital communication.", keywords: "chrome extension, toxicity detection, emotional intelligence, behavioral design, message analysis, privacy-first, digital wellness", metadataBase: new URL("https://emphra.io"), - alternates: { - canonical: "https://emphra.io"}, - openGraph: { - title: "Emphra - Intelligent Reflection Layer", description: "Pause. Reflect. Rethink. A behavioral technology extension for mindful digital communication.", url: "https://emphra.io", siteName: "Emphra", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AW6vwj9rEXp2p2oPGNNsw1tfOO/a-modern-chrome-extension-popup-showing--1772696348547-26739a3f.png", alt: "Emphra Emotional Risk Score Interface"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Emphra - Your Emotional Intelligence Layer", description: "Real-time message analysis with beautiful intervention design. 100% private, Chrome Extension.", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AW6vwj9rEXp2p2oPGNNsw1tfOO/a-sleek-intervention-modal-popup-from-em-1772696348509-fd1051a0.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Emphra - Emotional Intelligence Layer for the Internet", description: + "Emphra detects emotionally risky messages before they're sent. Pause. Reflect. Rethink. A beautifully designed behavioral technology that protects your voice and builds healthier online communication."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}