Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 09fa74daae | |||
| 0df6aeeacc | |||
| f93f6ef956 |
@@ -1,58 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Roboto } 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 roboto = Roboto({
|
||||
variable: "--font-roboto", subsets: ["latin"],
|
||||
weight: ["100", "300", "400", "500", "700", "900"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Custom Furniture Design Islamabad | Vantage Madera Casa", description: "Award-winning bespoke furniture designers in Islamabad. Custom sofas, dining sets, and artisan wood carving. 4.9/5 rating from 71 reviews. Free design consultation.", keywords: "custom furniture Islamabad, bespoke sofa design, artisan wood carving, furniture manufacturer Rawalpindi, Sage Outlet, handcrafted furniture", metadataBase: new URL("https://vantagemaderacasa.com"),
|
||||
alternates: {
|
||||
canonical: "https://vantagemaderacasa.com"},
|
||||
openGraph: {
|
||||
title: "Vantage Madera Casa | Award-Winning Custom Furniture Designers", description: "Transform your home with our bespoke furniture. Premium craftsmanship, collaborative design, timely delivery. 4.9/5 Google rating.", url: "https://vantagemaderacasa.com", siteName: "Vantage Madera Casa", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/modern-sofa-living-room_1339-4062.jpg", alt: "Vantage Madera Casa - Custom Furniture Design"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Vantage Madera Casa | Custom Furniture Designers", description: "Bespoke furniture for your dream home. Professional designers, artisan craftsmanship, timely delivery.", images: ["http://img.b2bpic.net/free-photo/modern-sofa-living-room_1339-4062.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "Vantage Madera Casa - Award-Winning Custom Furniture Design", description: "Custom furniture designers specializing in artisan-crafted pieces. Award-winning designs with Pakistani craftsmanship. Free consultation available."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1420,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -9,7 +9,7 @@ import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
|
||||
import ContactFaq from '@/components/sections/contact/ContactFaq';
|
||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||
import { Phone } from 'lucide-react';
|
||||
import { Phone, Star } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -62,7 +62,17 @@ export default function LandingPage() {
|
||||
]}
|
||||
autoplayDelay={5000}
|
||||
showDimOverlay={true}
|
||||
logoContainerClassName="relative"
|
||||
/>
|
||||
<div className="absolute top-12 left-1/2 transform -translate-x-1/2 z-50">
|
||||
<div className="flex items-center gap-2 px-4 py-2 rounded-full bg-white/10 backdrop-blur-md border border-white/20 shadow-lg">
|
||||
<div className="flex items-center gap-1">
|
||||
<Star className="w-4 h-4 fill-yellow-400 text-yellow-400" />
|
||||
<span className="text-sm font-semibold text-white">4.9</span>
|
||||
</div>
|
||||
<span className="text-xs text-white/80">Rated by 71 Clients</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="services" data-section="services">
|
||||
|
||||
Reference in New Issue
Block a user