diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 82e2fe6..7acdc01 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,46 +1,20 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Inter_Tight } 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 interTight = Inter_Tight({
- variable: "--font-inter-tight", subsets: ["latin"],
- weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Handmade Kurtis for Women | Artisan Kurtis", description: "Discover premium handmade kurtis for women. Artisanal designs, premium fabrics, and custom personalization. Order now on WhatsApp. Free shipping across India.", keywords: "handmade kurtis, ethnic wear, artisan kurtis, women clothing, traditional kurti, custom kurtis, premium fabrics", openGraph: {
- title: "Handmade Kurtis for Women | Artisan Kurtis", description: "Discover premium handmade kurtis for women. Artisanal designs, premium fabrics, and custom personalization.", siteName: "Artisan Kurtis", type: "website"},
- twitter: {
- card: "summary_large_image", title: "Handmade Kurtis for Women | Artisan Kurtis", description: "Discover premium handmade kurtis for women. Artisanal designs, premium fabrics, and custom personalization."},
-};
+ title: "Artisan Kurtis", description: "Handcrafted Kurtis for the Modern Woman"};
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 e6141b5..39984c1 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -11,7 +11,7 @@ import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterCard from '@/components/sections/footer/FooterCard';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
-import { Heart, Users, Sparkles, Award, Smile, Crown, Instagram, MessageCircle } from 'lucide-react';
+import { Heart, Users, Sparkles, Award, Smile, Crown, Instagram, MessageCircle, Zap } from 'lucide-react';
export default function LandingPage() {
return (
@@ -66,7 +66,9 @@ export default function LandingPage() {