diff --git a/src/app/layout.tsx b/src/app/layout.tsx index cb7250a..d55274a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,25 +1,19 @@ import type { Metadata } from "next"; -import { Poppins } from "next/font/google"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Playfair_Display, Poppins } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; +const playfairDisplay = Playfair_Display({ + variable: "--font-playfair-display", subsets: ["latin"], + weight: ["400", "500", "600", "700", "800", "900"], +}); + const poppins = Poppins({ variable: "--font-poppins", subsets: ["latin"], weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - export const metadata: Metadata = { title: "Lavish Perfumes Ajman Beach - Premium Fragrances & Fast Delivery", description: "Discover premium fragrances at Lavish Perfumes in Ajman Corniche. High-quality perfumes, expert service, fast delivery & in-store shopping. 4.8★ rated. Call 06 765 1134 today!", keywords: "perfume store Ajman, luxury fragrances Ajman, oud perfume, French perfumes, Arabic fragrances, perfume delivery Ajman, best perfumes Ajman Corniche", robots: { index: true, @@ -45,7 +39,7 @@ export default function RootLayout({ {children} diff --git a/src/app/page.tsx b/src/app/page.tsx index 31b26e4..b3d1111 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,30 +9,30 @@ import ProductCardOne from "@/components/sections/product/ProductCardOne"; import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen"; import ContactSplit from "@/components/sections/contact/ContactSplit"; import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; -import { CheckCircle, Star, Users, Zap } from "lucide-react"; +import { CheckCircle, Star, Users, Zap, Phone, MessageCircle, MapPin } from "lucide-react"; export default function LandingPage() { return (
@@ -206,22 +210,22 @@ export default function LandingPage() { columns={[ { items: [ - { label: "Home", href: "#home" }, + { label: "Home", href: "/" }, { label: "Services", href: "#services" }, { label: "Products", href: "#products" }, ], }, { items: [ - { label: "Contact", href: "#contact" }, - { label: "About", href: "#about" }, + { label: "Reviews", href: "#testimonials" }, + { label: "Location", href: "#location" }, { label: "Get Directions", href: "https://maps.google.com/?q=CC7P+7M+Ajman" }, ], }, { items: [ { label: "Call: 06 765 1134", href: "tel:+971676551134" }, - { label: "WhatsApp", href: "https://wa.me/971676551134" }, + { label: "WhatsApp Us", href: "https://wa.me/971676551134" }, { label: "Privacy Policy", href: "#" }, ], },