diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index e90390d..e64ef91 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,50 +1,20 @@
import type { Metadata } from "next";
-import { Montserrat, Inter } from "next/font/google";
+import { Inter } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-const montserrat = Montserrat({
- variable: "--font-montserrat", subsets: ["latin"],
-});
-
-const interFont = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Smell Good | Premium Colognes & Fragrances", description: "Discover premium colognes and fragrances at Smell Good. Luxury scents for every occasion. Free samples, worldwide shipping, and 30-day satisfaction guarantee.", keywords: "cologne, fragrance, perfume, luxury scents, men's cologne, women's perfume, designer fragrances", metadataBase: new URL("https://smellgood.com"),
- alternates: {
- canonical: "https://smellgood.com"},
- openGraph: {
- title: "Smell Good | Premium Colognes & Fragrances", description: "Discover premium colognes and fragrances. Luxury scents, worldwide shipping, and expert recommendations.", url: "https://smellgood.com", siteName: "Smell Good", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/queen-crown-still-life_23-2150409249.jpg", alt: "Smell Good Premium Fragrance Collection"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Smell Good | Premium Colognes & Fragrances", description: "Discover luxury fragrances and colognes. Find your signature scent today.", images: ["http://img.b2bpic.net/free-photo/queen-crown-still-life_23-2150409249.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "Smell Good - Premium Fragrances", description: "Discover your signature scent with our curated collection of premium colognes and fragrances from around the world."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-