diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index a71d33c..1412a9d 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,52 +1,22 @@
import type { Metadata } from "next";
-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";
-const halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "HydroLux - Premium Water Bottle Community", description: "Join the premier social platform for premium water bottle enthusiasts. Discover curated collections, connect with collectors, and celebrate the art of hydration.", keywords: "water bottles, premium bottles, bottle collection, hydration community, sustainable bottles, luxury bottles", metadataBase: new URL("https://hydrolux.com"),
- alternates: {
- canonical: "https://hydrolux.com"
- },
- openGraph: {
- title: "HydroLux - Elevate Your Hydration", description: "Join 50K+ bottle enthusiasts in the world's premier water bottle community.", url: "https://hydrolux.com", siteName: "HydroLux", type: "website", images: [{
- url: "http://img.b2bpic.net/free-photo/close-up-thermos-floating-water_23-2150963119.jpg", alt: "Premium water bottle collection"
- }]
- },
- twitter: {
- card: "summary_large_image", title: "HydroLux - Premium Water Bottle Community", description: "Discover premium bottles, connect with collectors, and celebrate hydration.", images: ["http://img.b2bpic.net/free-photo/close-up-thermos-floating-water_23-2150963119.jpg"]
- },
- robots: {
- index: true,
- follow: true
- }
-};
+ title: "HydroLux - Premium Water Bottle Community", description: "Join a premium community of bottle enthusiasts. Discover, share, and celebrate the art of hydration with curated collections."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-