Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-05 08:00:10 +00:00
2 changed files with 19 additions and 48 deletions

View File

@@ -1,55 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Public_Sans } 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 publicSans = Public_Sans({
variable: "--font-public-sans", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "LEVIT Boutique | Premium Fashion in Mangalore", description: "Discover curated fashion collections at LEVIT, Mangalore's premier boutique. Expert styling, exclusive pieces, and premium service. Open 10 AM - 11 PM daily.", keywords: "boutique, fashion, Mangalore, style, shopping, designer clothes", metadataBase: new URL("https://levitboutique.com"),
openGraph: {
title: "LEVIT Boutique | Curated Fashion Store in Mangalore", description: "Elevate your wardrobe with LEVIT's exclusive collections and personal styling services.", url: "https://levitboutique.com", siteName: "LEVIT Boutique", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/young-handsome-man-choosing-cloth-shop_1303-19847.jpg", alt: "LEVIT boutique - premium fashion destination"},
],
},
twitter: {
card: "summary_large_image", title: "LEVIT Boutique - Premium Fashion in Mangalore", description: "Discover curated fashion collections and expert personal styling services.", images: ["http://img.b2bpic.net/free-photo/young-handsome-man-choosing-cloth-shop_1303-19847.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "LEVIT - Premium Fashion Boutique in Mangalore", description: "Discover curated fashion & contemporary style at LEVIT, Mangalore's premier boutique. Exclusive collections, personal styling, and premium quality."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1417,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -10,7 +10,7 @@ import TestimonialCardFifteen from '@/components/sections/testimonial/Testimonia
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import { Heart, MapPin, Shield, Sparkles } from "lucide-react";
import { Heart, MapPin, Shield, Sparkles, ArrowRight } from "lucide-react";
export default function LandingPage() {
return (
@@ -101,18 +101,25 @@ export default function LandingPage() {
description="Experience exceptional service, curated selections, and a shopping experience designed with you in mind."
features={[
{
title: "Expert Curation", description: "Hand-picked collections from premium designers and emerging talents.", bentoComponent: "reveal-icon", icon: Sparkles
title: "Expert Curation", description: "Hand-picked collections from premium designers and emerging talents.", bentoComponent: "reveal-icon", icon: Sparkles,
button: { text: "Explore Services", href: "contact" }
},
{
title: "Personal Styling", description: "One-on-one consultation with our experienced style experts.", bentoComponent: "reveal-icon", icon: Heart
title: "Personal Styling", description: "One-on-one consultation with our experienced style experts.", bentoComponent: "reveal-icon", icon: Heart,
button: { text: "Book Your Session", href: "contact" }
},
{
title: "Premium Quality", description: "Commitment to quality fabrics, craftsmanship, and sustainable practices.", bentoComponent: "reveal-icon", icon: Shield
title: "Premium Quality", description: "Commitment to quality fabrics, craftsmanship, and sustainable practices.", bentoComponent: "reveal-icon", icon: Shield,
button: { text: "Learn More", href: "contact" }
},
{
title: "Convenient Location", description: "Located in Balmatta, easily accessible with ample parking.", bentoComponent: "reveal-icon", icon: MapPin
title: "Convenient Location", description: "Located in Balmatta, easily accessible with ample parking.", bentoComponent: "reveal-icon", icon: MapPin,
button: { text: "Get Directions", href: "contact" }
}
]}
buttons={[
{ text: "Explore Services", href: "contact" }
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
@@ -222,4 +229,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}