diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 2d8c164..d56cdd4 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,49 +1,37 @@
import type { Metadata } from "next";
-import { Libre_Baskerville } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-
-const libreBaskerville = Libre_Baskerville({
- variable: "--font-libre-baskerville", subsets: ["latin"],
- weight: ["400", "700"],
-});
+import "./styles/variables.css";
+import "./styles/base.css";
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
- title: "ShopHub - Premium Products, Fast Delivery", description: "Discover premium quality products with fast shipping, 30-day guarantee, and world-class customer service. Shop confidently with 500K+ happy customers.", keywords: "ecommerce, online shopping, premium products, fast shipping, quality goods", robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "ShopHub - Your Trusted E-commerce Partner", description: "Shop premium products with confidence. Fast delivery, best prices, and exceptional service.", type: "website", siteName: "ShopHub", images: [
- {
- url: "http://img.b2bpic.net/free-psd/get-glam-landing-page-template_23-2148986054.jpg", alt: "ShopHub Premium Products"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "ShopHub - Premium Products", description: "Discover quality products with fast shipping and guaranteed satisfaction", images: ["http://img.b2bpic.net/free-psd/get-glam-landing-page-template_23-2148986054.jpg"],
- },
-};
+ title: "TE&RO | Premium Hair Care", description: "Discover premium hair care products designed for healthy, beautiful hair"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-