Merge version_2 into main #4
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${interTight.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1408,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -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() {
|
||||
<ProductCardThree
|
||||
title="Our Featured Collections"
|
||||
description="Browse our handpicked selection of premium handmade kurtis. Each piece is uniquely crafted with attention to detail and quality."
|
||||
tag="Artisan Made"
|
||||
tag="Handmade Exclusives"
|
||||
tagIcon={Zap}
|
||||
tagAnimation="blur-reveal"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
|
||||
Reference in New Issue
Block a user