From 7aa9f172efe061c58ef9273ccb54227cde71bcb2 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 00:18:32 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 42 +++++++++++++++++++++++++++++++++--------- 1 file changed, 33 insertions(+), 9 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b681456..0629648 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,13 +1,19 @@ -import type { Metadata } from 'next'; -import { Inter } from 'next/font/google'; -import './globals.css'; +import type { Metadata } from "next"; +import { Geist, Geist_Mono } from "next/font/google"; +import "./globals.css"; +import { Tag } from "@/components/tag/Tag"; +import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper"; -const inter = Inter({ subsets: ['latin'] }); +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], +}); + +const geist_mono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], +}); export const metadata: Metadata = { - title: 'Temple AI - Real-Time On-Chain Intelligence', - description: 'Monitor protocol revenue, trading volume, and wallet activity with advanced analytics powered by Temple AI.', -}; + title: "Temple AI", description: "Comprehensive Business Solutions - Digital Services, Web Design, Branding, and AI Automation"}; export default function RootLayout({ children, @@ -15,8 +21,26 @@ export default function RootLayout({ children: React.ReactNode; }) { return ( - - {children} + + +