From 04f827a925da9b13b4afa08fa1551fbc71bfefc0 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 16:40:40 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 80 +++++++++++++++++++--------------------------- 1 file changed, 33 insertions(+), 47 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index dc80026..cc47e40 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,62 +1,41 @@ -import type { Metadata } from "next"; -import { Manrope } from "next/font/google"; -import { DM_Sans } from "next/font/google"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import type { Metadata } from 'next'; +import './globals.css'; +import './styles/variables.css'; +import './styles/base.css'; +import { Poppins } from 'next/font/google'; -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); - -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'], }); export const metadata: Metadata = { - title: "Lamisa Fashion - Luxury Women's Clothing Online", description: "Discover elegant, premium women's fashion at Lamisa Fashion. Shop stylish dresses, casual wear, and luxury clothing online. Trusted by thousands of customers worldwide.", keywords: "women's fashion, luxury clothing, online shopping, dresses, premium apparel, trendy women's wear", metadataBase: new URL("https://lamisafashion.com"), - alternates: { - canonical: "https://lamisafashion.com"}, - openGraph: { - title: "Lamisa Fashion - Premium Women's Clothing", description: "Explore elegant and stylish women's fashion collections at Lamisa Fashion. Shop luxury clothing online today.", url: "https://lamisafashion.com", siteName: "Lamisa Fashion", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/portrait-modern-female-grey-coat_613910-7088.jpg", alt: "Lamisa Fashion - Luxury Women's Clothing"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Lamisa Fashion - Luxury Women's Clothing", description: "Discover premium, elegant women's fashion at Lamisa Fashion. Shop online today.", images: ["http://img.b2bpic.net/free-photo/portrait-modern-female-grey-coat_613910-7088.jpg"], - }, - robots: { - index: true, - follow: true, - }, + title: 'Lamisa Fashion | Luxury Women\'s Clothing', + description: 'Discover premium women\'s fashion with Lamisa Fashion. Explore elegant dresses, casual wear, and luxury styles for every occasion.', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - + +