diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 670ff1d..f5b4eed 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,50 +1,20 @@
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"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "EMOTOS - Express Your Mood Through Fashion", description: "Discover bold, playful clothing that captures your emotion. Shop unique emoto-inspired designs that bring personality and confidence to your wardrobe.", keywords: "emotos, clothing, fashion, apparel, self-expression, mood wear, designer tees, hoodies", robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "EMOTOS - Express Your Mood Through Fashion", description: "Bold, playful clothing that captures your emotion. Join thousands expressing themselves with EMOTOS.", url: "https://emotos.com", siteName: "EMOTOS", type: "website", images: [
- {
- url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AVBmysSQrrtYr6IhZMXEqY4f9a/uploaded-1772668031211-nmou3soy.png", alt: "EMOTOS brand"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "EMOTOS - Express Your Mood Through Fashion", description: "Bold, playful clothing that captures your emotion. Join thousands expressing themselves with EMOTOS.", images: [
- "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AVBmysSQrrtYr6IhZMXEqY4f9a/uploaded-1772668031211-nmou3soy.png"],
- },
-};
+ title: "EMOTOS - Express Yourself", description: "Bold, playful clothing that captures your mood"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-