From 8afb7f928c6a5e6b9869ad3abc291c35f355ee20 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 12:59:21 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 70 +++++----------------------------------------- 1 file changed, 7 insertions(+), 63 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f462241..fab6a16 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,75 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Poppins } 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 poppins = Poppins({ - variable: "--font-poppins", - subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Alignra | Premium Lifestyle & Comfort Products", - description: "Discover Alignra's premium collection of innovative lifestyle products designed for comfort and modern living. Shop luxury goods with fast shipping and 30-day guarantee.", - keywords: "premium products, luxury lifestyle, comfort items, high-quality goods, innovative design", - metadataBase: new URL("https://alignra.com"), - alternates: { - canonical: "https://alignra.com", - }, - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Alignra | Premium Lifestyle Products", - description: "Innovative products designed to improve your lifestyle and daily performance.", - url: "https://alignra.com", - siteName: "Alignra", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/composition-natural-argan-seeds_23-2149016622.jpg", - alt: "Alignra Premium Products", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Alignra | Premium Lifestyle Products", - description: "Shop innovative premium products for modern living.", - images: ["http://img.b2bpic.net/free-photo/composition-natural-argan-seeds_23-2149016622.jpg"], - }, -}; + title: "Alignra - Premium Lifestyle Products", description: "Discover innovative products designed to improve your lifestyle and daily performance. Experience luxury, quality, and sophistication."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}