Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a113edc3cb | |||
| b0b7f0a695 | |||
| c137840fb5 |
@@ -1,11 +1,17 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Inter } from "next/font/google";
|
import { Geist, Geist_Mono } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
|
|
||||||
const inter = Inter({ subsets: ["latin"] });
|
const geist = Geist({
|
||||||
|
variable: "--font-geist-sans", subsets: ["latin"],
|
||||||
|
});
|
||||||
|
|
||||||
|
const geistMono = Geist_Mono({
|
||||||
|
variable: "--font-geist-mono", subsets: ["latin"],
|
||||||
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
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."};
|
title: "Create Next App", description: "Generated by create next app"};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
@@ -14,7 +20,9 @@ export default function RootLayout({
|
|||||||
}) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<body className={inter.className}>{children}
|
<body className={`${geist.variable} ${geistMono.variable}`}>
|
||||||
|
{children}
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
|||||||
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
|
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
|
||||||
import ContactFaq from '@/components/sections/contact/ContactFaq';
|
import ContactFaq from '@/components/sections/contact/ContactFaq';
|
||||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||||
import { Phone, Star } from 'lucide-react';
|
import { Phone } from 'lucide-react';
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -62,17 +62,7 @@ export default function LandingPage() {
|
|||||||
]}
|
]}
|
||||||
autoplayDelay={5000}
|
autoplayDelay={5000}
|
||||||
showDimOverlay={true}
|
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>
|
||||||
|
|
||||||
<div id="services" data-section="services">
|
<div id="services" data-section="services">
|
||||||
@@ -195,7 +185,7 @@ export default function LandingPage() {
|
|||||||
<ContactFaq
|
<ContactFaq
|
||||||
ctaTitle="Ready to Transform Your Space?"
|
ctaTitle="Ready to Transform Your Space?"
|
||||||
ctaDescription="Tell us about your dream project and let's create something extraordinary together."
|
ctaDescription="Tell us about your dream project and let's create something extraordinary together."
|
||||||
ctaButton={{ text: "Request a Free Consultation", href: "#" }}
|
ctaButton={{ text: "Book Your Free Design Call", href: "#contact" }}
|
||||||
ctaIcon={Phone}
|
ctaIcon={Phone}
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user