From 0174e1443628bbda487a1b566705e1992bbebf6a Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 09:57:33 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 39 ++++++++------------------------------- 1 file changed, 8 insertions(+), 31 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2fc447f..78a1a1d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,42 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Lenis as LenisComponent } from "./lenis"; 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"], -}); export const metadata: Metadata = { - title: "Helion Era | Premium Digital Growth Agency", description: "Premium digital growth agency offering UI/UX design, website development, social media management, and lead generation systems. Move your brand forward with strategic growth solutions.", keywords: "digital growth agency, UI UX design, website development, lead generation, social media management, SEO strategy, conversion optimization", openGraph: { - title: "Helion Era | Growth Systems That Move Brands Forward", description: "Premium digital growth agency delivering strategic solutions that accelerate brand growth and market dominance.", siteName: "Helion Era", type: "website"}, - robots: { - index: true, - follow: true, - }, -}; + title: "Helion Era - Digital Growth Agency", description: "Premium UI/UX design, website development, social media management, lead generation systems, and digital growth strategy."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +