2 Commits

Author SHA1 Message Date
30f97d0944 Update src/app/page.tsx 2026-05-02 09:22:48 +00:00
f7660fee55 Merge version_2 into main
Merge version_2 into main
2026-05-02 09:03:16 +00:00

View File

@@ -4,15 +4,11 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import { Zap, ChefHat, Box, Tv } from 'lucide-react';
import ContactText from '@/components/sections/contact/ContactText';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import SplitAbout from '@/components/sections/about/SplitAbout';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
export default function LandingPage() {
return (
@@ -46,7 +42,7 @@ export default function LandingPage() {
title="Transform Your Space with Swastik Interio"
description="Your vision, our expertise. We bring professional interior design solutions tailored to your unique style and requirements."
buttons={[{ text: "Redesign Your Space", href: "#contact" }]}
imageSrc="http://img.b2bpic.net/free-photo/living-room-with-large-blue-sofa-large-coffee-table-with-large-window-that-says-room-is-decorated-with-large-plant_123827-23873.jpg"
imageSrc="https://img.freepik.com/free-photo/modern-living-room-with-cozy-furniture-elegant-decor_107420-96422.jpg"
/>
</div>
@@ -61,7 +57,7 @@ export default function LandingPage() {
{ title: "Quality Materials", description: "Only the best materials for your home." },
{ title: "Timely Delivery", description: "Respecting your time and expectations." },
]}
imageSrc="http://img.b2bpic.net/free-photo/close-up-architect-woman-her-working-desk-working-new-projects-architecture-design_482257-33107.jpg"
imageSrc="https://img.freepik.com/free-photo/interior-designer-working-office-blueprints_23-2149176378.jpg"
/>
</div>
@@ -70,10 +66,10 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
features={[
{ title: "Interior Planning", description: "Conceptual design for every room.", imageSrc: "http://img.b2bpic.net/free-photo/building-with-abstract-lines_1127-107.jpg", buttonIcon: Zap },
{ title: "Modular Solutions", description: "Customized furniture for modern living.", imageSrc: "http://img.b2bpic.net/free-photo/modern-interior-beautiful-kitchen-studio_651396-1984.jpg", buttonIcon: ChefHat },
{ title: "Space Planning", description: "Efficient utilization of your floor area.", imageSrc: "http://img.b2bpic.net/free-photo/young-brunette-woman-sitting-huge-dressing-room-thinks-choice-clothes-she-is-dressed-stylish-black-outfit-silver-shoes-expressing-true-positive-face-emotions_197531-1676.jpg", buttonIcon: Box },
{ title: "Finishing Touches", description: "Wall treatments, lighting, and decor.", imageSrc: "http://img.b2bpic.net/free-psd/modern-wooden-tv-stand-with-rattan-accents_191095-78662.jpg", buttonIcon: Tv },
{ title: "Interior Planning", description: "Conceptual design for every room.", imageSrc: "https://img.freepik.com/free-photo/minimalist-modern-living-room-interior_23-2148818817.jpg", buttonIcon: Zap },
{ title: "Modular Solutions", description: "Customized furniture for modern living.", imageSrc: "https://img.freepik.com/free-photo/modern-kitchen-with-wooden-accents_1127-3388.jpg", buttonIcon: ChefHat },
{ title: "Space Planning", description: "Efficient utilization of your floor area.", imageSrc: "https://img.freepik.com/free-photo/empty-modern-room-with-large-window-view_1127-3755.jpg", buttonIcon: Box },
{ title: "Finishing Touches", description: "Wall treatments, lighting, and decor.", imageSrc: "https://img.freepik.com/free-photo/elegant-home-decor-details_123827-23846.jpg", buttonIcon: Tv },
]}
title="Our Specialized Services"
description="Comprehensive design services to redefine your environment."
@@ -102,4 +98,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}