diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index b0528c5..a57d75e 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,51 +1,20 @@
import type { Metadata } from "next";
-import { Montserrat } 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 inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "StyleHub - Shop Fashion & Lifestyle Goods Online", description: "Discover premium clothing, accessories, and lifestyle products at StyleHub. Free shipping on orders over $50. 30-day returns. Shop now!", keywords: "clothing, fashion, accessories, lifestyle, online shopping, apparel, buy online", metadataBase: new URL("https://stylehub.com"),
- alternates: {
- canonical: "https://stylehub.com"},
- openGraph: {
- title: "StyleHub - Your Ultimate Shopping Destination", description: "Shop trending fashion and lifestyle products with free shipping and easy returns.", url: "https://stylehub.com", siteName: "StyleHub", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/studio-with-props-fashion-shoting_23-2148885691.jpg", alt: "StyleHub Fashion Collection"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "StyleHub - Shop Fashion & Lifestyle", description: "Discover curated products with free shipping and 30-day returns.", images: ["http://img.b2bpic.net/free-photo/studio-with-props-fashion-shoting_23-2148885691.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "StyleHub - Premium Fashion & Lifestyle", description: "Discover premium fashion and lifestyle products curated for your unique style."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+ {children}
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 051358b..f72bae9 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -12,7 +12,7 @@ import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCar
import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia";
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
-import { Award, Sparkles } from "lucide-react";
+import { Award, Sparkles, TrendingUp } from "lucide-react";
export default function LandingPage() {
return (
@@ -73,7 +73,9 @@ export default function LandingPage() {
);
-}
\ No newline at end of file
+}