diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6b21680..b3c47cf 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,46 +1,24 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Lato } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "./styles/variables.css"; +import "./styles/base.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Kebabchi - Authentic Kebabs in Lucknow", description: "Experience authentic hand-grilled kebabs at Kebabchi in Husainabad, Lucknow. Premium ingredients, traditional cooking methods, and exceptional dining.", keywords: "kebab restaurant lucknow, shish kebab, doner kebab, authentic kebabs, husainabad lucknow", openGraph: { - title: "Kebabchi - Premium Kebabs in Lucknow", description: "Discover the finest hand-grilled kebabs prepared with premium spices and traditional techniques", siteName: "Kebabchi", type: "website"}, - twitter: { - card: "summary_large_image", title: "Kebabchi - Authentic Kebabs in Lucknow", description: "Experience premium hand-grilled kebabs at Kebabchi"}, -}; + title: "LuxeCore - Luxury Fashion Brand", description: "Premium fashion brand featuring luxury collections for men, women, and accessories."}; 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 b8bd8d3..70fb37f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -5,158 +5,203 @@ import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleAp import HeroSplitTestimonial from "@/components/sections/hero/HeroSplitTestimonial"; import SplitAbout from "@/components/sections/about/SplitAbout"; import FeatureCardOne from "@/components/sections/feature/FeatureCardOne"; +import ProductCardTwo from "@/components/sections/product/ProductCardTwo"; import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen"; import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; import FaqDouble from "@/components/sections/faq/FaqDouble"; import ContactSplit from "@/components/sections/contact/ContactSplit"; import FooterBase from "@/components/sections/footer/FooterBase"; -import { Sparkles, Flame, MapPin, Heart } from "lucide-react"; +import { Sparkles, Star, Package, Users, ShoppingBag } from "lucide-react"; export default function LandingPage() { const navItems = [ - { name: "Menu", id: "menu" }, + { name: "Men", id: "men" }, + { name: "Women", id: "women" }, + { name: "Accessories", id: "accessories" }, { name: "About", id: "about" }, - { name: "Testimonials", id: "testimonials" }, { name: "Contact", id: "contact" }, ]; return ( - + - - + + + + + + + + + @@ -165,70 +210,81 @@ export default function LandingPage() {